Skip to content

Commit

Permalink
more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth Kehl committed Jan 13, 2025
1 parent af158bf commit 18debf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/app/celery/test_scheduled_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ def test_process_delivery_receipts_success(mocker):
cloudwatch_mock = mocker.patch(
"app.celery.scheduled_tasks.AwsCloudwatchClient"
)
cloudwatch_mock.check_delivery_receipts.return_value = {range(2000), range(500)}
cloudwatch_mock.check_delivery_receipts.return_value = (range(2000), range(500))
current_app_mock = mocker.patch("app.celery.scheduled_tasks.current_app")
current_app_mock.return_value = MagicMock()
processor = MagicMock()
Expand Down

0 comments on commit 18debf6

Please sign in to comment.