Skip to content

Commit c0f3c16

Browse files
committed
fix: update test
1 parent 9d0e8aa commit c0f3c16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration_tests/test_granules_deletion.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def setUp(self) -> None:
3232

3333
self.tenant = 'UDS_LOCAL_TEST_3' # 'uds_local_test' # 'uds_sandbox'
3434
self.tenant_venue = 'DEV' # 'DEV1' # 'dev'
35-
self.collection_name = 'CCC-02' # 'uds_collection' # 'sbx_collection'
35+
self.collection_name = 'CCC-04' # 'uds_collection' # 'sbx_collection'
3636
self.collection_version = '08'.replace('.', '') # '2402011200'
3737
return
3838

@@ -91,5 +91,5 @@ def test_delete_all(self):
9191

9292
s3 = AwsS3()
9393
for each_url in asset_urls:
94-
self.assertTrue(s3.set_s3_url(each_url).exists(s3.target_bucket, s3.target_key), f'file no longer exists: {each_url}')
94+
self.assertFalse(s3.set_s3_url(each_url).exists(s3.target_bucket, s3.target_key), f'file still exists: {each_url}')
9595
return

0 commit comments

Comments
 (0)