From: Chad Whitacre Date: Thu, 24 Jan 2013 01:32:03 +0000 (-0500) Subject: Remove a test per @kennethreitz in IRC X-Git-Tag: v1.2.0~69^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ef52044c5f0411307ef2200fcb950bd84879266f;p=services%2Fpython-requests.git Remove a test per @kennethreitz in IRC The test suite is moving from the httpbin pattern (which hits the network) to depending on the request.prepare method (which doesn't). Here's a start ... --- diff --git a/test_requests.py b/test_requests.py index 425e357..e3f8627 100644 --- a/test_requests.py +++ b/test_requests.py @@ -76,10 +76,6 @@ class RequestsTestCase(unittest.TestCase): self.assertEqual(request.url, "http://example.com/path?key=value&a=b#fragment") - def test_HTTP_200_OK_GET(self): - r = requests.get(httpbin('get')) - self.assertEqual(r.status_code, 200) - def test_HTTP_200_OK_GET_ALTERNATIVE(self): r = requests.Request('GET', httpbin('get')) s = requests.Session()