From a04775f862c479d017689dddf28c6e6a84beb74e Mon Sep 17 00:00:00 2001 From: Cory Benfield Date: Sat, 18 Aug 2012 21:24:02 +0100 Subject: [PATCH] Typo fix in tests. --- tests/test_requests_ext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.34.1