diff --git a/.travis.yml b/.travis.yml index 74ec8b19..f6080cad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ python: - 2.6 - 2.7 - 3.2 + - 3.3 env: HTTPBIN_URL=http://httpbin.org/ script: make test install: diff --git a/test_requests.py b/test_requests.py index 1713b155..61634cd1 100644 --- a/test_requests.py +++ b/test_requests.py @@ -215,8 +215,6 @@ class RequestsTestCase(unittest.TestCase): pass def test_request_ok_set(self): - - r = requests.get(httpbin('status', '404')) self.assertEqual(r.ok, False)