[Python-checkins] cpython: Fix typo in test method name.

mark.dickinson python-checkins at python.org
Fri Apr 18 17:09:10 CEST 2014


http://hg.python.org/cpython/rev/b64be5cb67a6
changeset:   90397:b64be5cb67a6
user:        Mark Dickinson <dickinsm at gmail.com>
date:        Fri Apr 18 16:08:47 2014 +0100
summary:
  Fix typo in test method name.

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


diff --git a/Lib/unittest/test/test_case.py b/Lib/unittest/test/test_case.py
--- a/Lib/unittest/test/test_case.py
+++ b/Lib/unittest/test/test_case.py
@@ -1080,7 +1080,7 @@
             # so can't use assertEqual either. Just use assertTrue.
             self.assertTrue(sample_text_error == error)
 
-    def testAsertEqualSingleLine(self):
+    def testAssertEqualSingleLine(self):
         sample_text = "laden swallows fly slowly"
         revised_sample_text = "unladen swallows fly quickly"
         sample_text_error = """\

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


More information about the Python-checkins mailing list