From 997fcdc065a80bd128544a3abd79f7be99e63f6f Mon Sep 17 00:00:00 2001 From: Sara Robinson Date: Mon, 9 Feb 2026 10:25:09 -0800 Subject: [PATCH] chore: Fix bucket cleanup in system tests PiperOrigin-RevId: 867666396 --- tests/system/aiplatform/e2e_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system/aiplatform/e2e_base.py b/tests/system/aiplatform/e2e_base.py index 62ca536159..9f090f24b8 100644 --- a/tests/system/aiplatform/e2e_base.py +++ b/tests/system/aiplatform/e2e_base.py @@ -116,7 +116,7 @@ def delete_staging_bucket(self, shared_state: Dict[str, Any]): # Get the staging bucket used for testing and wipe it bucket = shared_state["bucket"] - bucket.delete_blobs(bucket.list_blobs()) + bucket.delete_blobs(list(bucket.list_blobs())) bucket.delete() @pytest.fixture(scope="class")