[Python-checkins] cpython: Fix typo

jason.coombs python-checkins at python.org
Sun Sep 22 16:11:20 CEST 2013


http://hg.python.org/cpython/rev/abf46970b286
changeset:   85784:abf46970b286
user:        Senthil Kumaran <senthil at uthcode.com>
date:        Mon Sep 09 23:13:06 2013 -0700
summary:
  Fix typo

files:
  Lib/test/test_urllib2.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py
--- a/Lib/test/test_urllib2.py
+++ b/Lib/test/test_urllib2.py
@@ -1482,7 +1482,7 @@
     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())
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list