Skip to content

Commit 138d014

Browse files
committed
fix import path for mock S3 copy response in bulk upload tests
1 parent fc77d65 commit 138d014

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lambdas/tests/unit/services/test_bulk_upload_service.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@
3838
PDS_PATIENT_DECEASED_INFORMAL,
3939
PDS_PATIENT_RESTRICTED,
4040
)
41+
from tests.unit.helpers.data.s3_responses import MOCK_COPY_OBJECT_RESPONSE
4142
from tests.unit.utils.test_unicode_utils import (
4243
NAME_WITH_ACCENT_NFC_FORM,
4344
NAME_WITH_ACCENT_NFD_FORM,
4445
)
45-
from unit.helpers.data.s3_responses import MOCK_COPY_OBJECT_RESPONSE
4646
from utils.exceptions import (
4747
BulkUploadException,
4848
DocumentInfectedException,
@@ -418,7 +418,7 @@ def test_handle_sqs_message_calls_report_upload_failure_when_lg_file_name_invali
418418
TEST_STAGING_METADATA_WITH_INVALID_FILENAME,
419419
UploadStatus.FAILED,
420420
str(mocked_error),
421-
"Y12345"
421+
"Y12345",
422422
)
423423
repo_under_test.sqs_repository.send_message_to_pdf_stitching_queue.assert_not_called()
424424

0 commit comments

Comments
 (0)