Merge pull request #1137 from whit537/unperson_test

Remove a test per @kennethreitz in IRC
This commit is contained in:
Kenneth Reitz
2013-01-23 17:37:13 -08:00
-4
View File
@@ -73,10 +73,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()