We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7d7889 commit 11c4cf2Copy full SHA for 11c4cf2
lambdas/filenameprocessor/tests/test_lambda_handler.py
@@ -301,7 +301,7 @@ def test_lambda_handler_extended_attributes_success(self):
301
self.assertEqual(item[AuditTableKeys.TIMESTAMP]["S"], test_cases[0].created_at_formatted_string)
302
self.assertEqual(item[AuditTableKeys.EXPIRES_AT]["N"], str(test_cases[0].expires_at))
303
# File should be moved to destination under archive/
304
- dest_key = f"archive/{test_cases[0].file_key}"
+ dest_key = f"dps_destination/{test_cases[0].file_key}"
305
print(f" destination file is at {s3_client.list_objects(Bucket=BucketNames.DESTINATION)}")
306
retrieved = s3_client.get_object(Bucket=BucketNames.DESTINATION, Key=dest_key)
307
self.assertIsNotNone(retrieved)
0 commit comments