summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_urllib2.py
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2013-09-10 06:13:06 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2013-09-10 06:13:06 (GMT)
commit0b5463fef20a2575a3cf7d7f1be3e1bd77502d00 (patch)
tree7f1224b2b19be5b1f6ebe8f099376392304c2926 /Lib/test/test_urllib2.py
parent4a6524295d2c3b4ded90bc33365306f89967dc0f (diff)
downloadcpython-0b5463fef20a2575a3cf7d7f1be3e1bd77502d00.zip
cpython-0b5463fef20a2575a3cf7d7f1be3e1bd77502d00.tar.gz
cpython-0b5463fef20a2575a3cf7d7f1be3e1bd77502d00.tar.bz2
Fix typo
Diffstat (limited to 'Lib/test/test_urllib2.py')
-rw-r--r--Lib/test/test_urllib2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py
index 9c71abf..dbd1c60 100644
--- a/Lib/test/test_urllib2.py
+++ b/Lib/test/test_urllib2.py
@@ -1482,7 +1482,7 @@ class RequestTests(unittest.TestCase):
def test_method(self):
self.assertEqual("POST", self.post.get_method())
self.assertEqual("GET", self.get.get_method())
- self.assertEquil("HEAD", self.head.get_method())
+ self.assertEqual("HEAD", self.head.get_method())
self.assertEqual("PUT", self.put.get_method())
self.assertEqual("POST", self.force_post.get_method())