diff --git a/tests/app/celery/test_tasks.py b/tests/app/celery/test_tasks.py index 2d8e23f4f..dbd771b9c 100644 --- a/tests/app/celery/test_tasks.py +++ b/tests/app/celery/test_tasks.py @@ -1853,6 +1853,6 @@ def test_generate_notifications_report_normal_case( mock_upload.assert_called_once() args, kwargs = mock_upload.call_args - assert kwargs["bucket_name"] == ["my-bucket"] + assert kwargs["bucket_name"] == "my-bucket" assert kwargs["file_location"] == "some/file/location.csv" assert isinstance(kwargs["filedata"], io.BytesIO)