Typo fix in tests.

This commit is contained in:
Cory Benfield
2012-08-18 21:24:02 +01:00
parent cb0fdd80d0
commit a04775f862
+1 -1
View File
@@ -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()