X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/6cd3b6fb1c143017c6bca4db899c8c6ddd237572..aaa45b09de0e9437743fce53d7c0bf8165074b5e:/sdk/python/tests/test_errors.py diff --git a/sdk/python/tests/test_errors.py b/sdk/python/tests/test_errors.py index 6e8df96316..db875dc212 100644 --- a/sdk/python/tests/test_errors.py +++ b/sdk/python/tests/test_errors.py @@ -10,8 +10,8 @@ class KeepRequestErrorTestCase(unittest.TestCase): REQUEST_ERRORS = [ ('http://keep1.zzzzz.example.org/', IOError("test IOError")), ('http://keep3.zzzzz.example.org/', MemoryError("test MemoryError")), - ('http://keep5.zzzzz.example.org/', tutil.fake_requests_response( - 500, "test 500")), + ('http://keep5.zzzzz.example.org/', + arv_error.HttpError(500, "Internal Server Error")), ('http://keep7.zzzzz.example.org/', IOError("second test IOError")), ]