Skip to content

Commit 997fcdc

Browse files
sararobcopybara-github
authored andcommitted
chore: Fix bucket cleanup in system tests
PiperOrigin-RevId: 867666396
1 parent d3924ab commit 997fcdc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/system/aiplatform/e2e_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def delete_staging_bucket(self, shared_state: Dict[str, Any]):
116116

117117
# Get the staging bucket used for testing and wipe it
118118
bucket = shared_state["bucket"]
119-
bucket.delete_blobs(bucket.list_blobs())
119+
bucket.delete_blobs(list(bucket.list_blobs()))
120120
bucket.delete()
121121

122122
@pytest.fixture(scope="class")

0 commit comments

Comments
 (0)