X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/55aafbb07904ca24390dd47ea960eae7cb2b909a..4ad6191d53207a8b2d4c0c8a30b18119daaa5fbc:/sdk/python/tests/test_retry.py diff --git a/sdk/python/tests/test_retry.py b/sdk/python/tests/test_retry.py index 2d02005937..bcf784d130 100644 --- a/sdk/python/tests/test_retry.py +++ b/sdk/python/tests/test_retry.py @@ -174,14 +174,14 @@ class CheckHTTPResponseSuccessTestCase(unittest.TestCase): self.check_is(True, *list(range(200, 207))) def test_obvious_stops(self): - self.check_is(False, 424, 426, 428, 431, + self.check_is(False, 422, 424, 426, 428, 431, *list(range(400, 408)) + list(range(410, 420))) def test_obvious_retries(self): self.check_is(None, 500, 502, 503, 504) def test_4xx_retries(self): - self.check_is(None, 408, 409, 422, 423) + self.check_is(None, 408, 409, 423) def test_5xx_failures(self): self.check_is(False, 501, *list(range(505, 512)))