mirror of https://github.com/python/cpython
Merged revisions 87895 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87895 | lukasz.langa | 2011-01-09 12:18:53 -0600 (Sun, 09 Jan 2011) | 5 lines #10874: test_urllib2 shouldn't use `is` operator for comparing strings Patch by Adreas Stührk. ........
This commit is contained in:
parent
f4676b0378
commit
9810427e41
|
@ -748,7 +748,7 @@ class HandlerTests(unittest.TestCase):
|
|||
else:
|
||||
self.assertTrue(o.req is req)
|
||||
self.assertEqual(req.type, "ftp")
|
||||
self.assertEqual(req.type is "ftp", ftp)
|
||||
self.assertEqual(req.type == "ftp", ftp)
|
||||
|
||||
def test_http(self):
|
||||
|
||||
|
|
Loading…
Reference in New Issue