diff --git a/tests/system/_helpers.py b/tests/system/_helpers.py index 05e4f8ba6..72045d1b6 100644 --- a/tests/system/_helpers.py +++ b/tests/system/_helpers.py @@ -79,7 +79,7 @@ def delete_blob(blob): errors = (exceptions.Conflict, exceptions.TooManyRequests) retry = RetryErrors(errors) try: - retry(blob.delete)() + retry(blob.delete)(timeout=120) # seconds except exceptions.NotFound: # race pass