diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2014-04-18 15:08:47 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2014-04-18 15:08:47 (GMT) |
commit | d12290654a0320e3515ab10738f00b5194372827 (patch) | |
tree | e9c841d1a9e5870d35d2a6f51c1dab813cf389da /Lib/unittest | |
parent | 9996a7d21b9635bcd4757be03fc40615c177ef70 (diff) | |
download | cpython-d12290654a0320e3515ab10738f00b5194372827.zip cpython-d12290654a0320e3515ab10738f00b5194372827.tar.gz cpython-d12290654a0320e3515ab10738f00b5194372827.tar.bz2 |
Fix typo in test method name.
Diffstat (limited to 'Lib/unittest')
-rw-r--r-- | 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 index 4932578..aae7ec3 100644 --- a/Lib/unittest/test/test_case.py +++ b/Lib/unittest/test/test_case.py @@ -1080,7 +1080,7 @@ test case # 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 = """\ |