Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
awmackowiak committed Nov 22, 2023
1 parent e6764e4 commit dc71d74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/unit/tasks/test_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ def test_del(self):
with patch('celery.result.AsyncResult.backend') as backend:
result = self.app.AsyncResult(self.task1['id'], backend=backend)
result_clone = copy.copy(result)
# del result do not exacly call __del__ method. The gc does.
# del result do not exactly call __del__ method. The gc does.
# https://docs.python.org/3/reference/datamodel.html#object.__del__
result.__del__()
backend.remove_pending_result.assert_called_once_with(
Expand Down

0 comments on commit dc71d74

Please sign in to comment.