diff --git a/test_requests.py b/test_requests.py index e40d44f0..52de11c5 100644 --- a/test_requests.py +++ b/test_requests.py @@ -366,26 +366,6 @@ class RequestsTestCase(unittest.TestCase): r = requests.Request(url=HTTPBIN) self.assertRaises(ValueError, requests.Session().send, r) - def test_can_specify_retries(self): - # monkey patch urlopen - from requests.packages.urllib3.poolmanager import HTTPConnectionPool - old_urlopen = HTTPConnectionPool.urlopen - - max_retries_used = [] - def urlopen(*args, **kwargs): - """Save what value we used for retries each time we call urlopen.""" - max_retries_used.append(kwargs.get('retries')) - return old_urlopen(*args, **kwargs) - - HTTPConnectionPool.urlopen = urlopen - - # do the request and check that max_retries was passed through - requests.get(httpbin('get'), max_retries=5) - self.assertEqual(max_retries_used, [5]) - - # undo monkey patch - HTTPConnectionPool.urlopen = old_urlopen - def test_http_error(self): error = requests.exceptions.HTTPError() self.assertEqual(error.response, None)