X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/35658af99f09f2f6768583d65246429f789fc5a2..d600f6dbb82e46922b17ff93a877a76131c26ebc:/sdk/python/tests/test_retry_job_helpers.py diff --git a/sdk/python/tests/test_retry_job_helpers.py b/sdk/python/tests/test_retry_job_helpers.py index 76c62cb0ce..9389b25c88 100644 --- a/sdk/python/tests/test_retry_job_helpers.py +++ b/sdk/python/tests/test_retry_job_helpers.py @@ -28,7 +28,7 @@ class ApiClientRetryTestMixin(object): def setUp(self): # Patch arvados.api() to return our mock API, so we can mock # its http requests. - self.api_client = arvados.api('v1', cache=False) + self.api_client = arvados.api('v1', cache=False, num_retries=0) self.api_patch = mock.patch('arvados.api', return_value=self.api_client) self.api_patch.start()