From: Cory Benfield Date: Sat, 18 Aug 2012 20:24:02 +0000 (+0100) Subject: Typo fix in tests. X-Git-Tag: v0.13.7~4^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a04775f862c479d017689dddf28c6e6a84beb74e;p=services%2Fpython-requests.git Typo fix in tests. --- diff --git a/tests/test_requests_ext.py b/tests/test_requests_ext.py index 3e0d5b7..208803a 100644 --- a/tests/test_requests_ext.py +++ b/tests/test_requests_ext.py @@ -117,7 +117,7 @@ class RequestsTestSuite(unittest.TestCase): # cookies of the first domain should NOT be sent to the next one r3 = s.get(url='http://tinyurl.com/7zp3jnr') assert r3.url == 'http://httpbin.org/cookies' - self.assertTrue('preview' not in json.loads(r2.text)['cookies']) + self.assertTrue('preview' not in json.loads(r3.text)['cookies']) if __name__ == '__main__': unittest.main()