From: Eric Smith Date: Wed, 19 Mar 2008 12:15:10 +0000 (+0000) Subject: Trivial typo. X-Git-Tag: v2.6a2~225 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8ff496359401ceaf05813ae3f982c4f0c0ffd799;p=thirdparty%2FPython%2Fcpython.git Trivial typo. --- diff --git a/Lib/test/test_int_literal.py b/Lib/test/test_int_literal.py index f4f08ac88f05..ef376ac7a32c 100644 --- a/Lib/test/test_int_literal.py +++ b/Lib/test/test_int_literal.py @@ -10,7 +10,7 @@ import warnings warnings.filterwarnings("ignore", "hex/oct constants", FutureWarning, "") -class TextHexOctBin(unittest.TestCase): +class TestHexOctBin(unittest.TestCase): def test_hex_baseline(self): # A few upper/lowercase tests @@ -185,7 +185,7 @@ class TextHexOctBin(unittest.TestCase): self.assertEqual(-0b1111111111111111111111111111111111111111111111111111111111111111, -18446744073709551615L) def test_main(): - test_support.run_unittest(TextHexOctBin) + test_support.run_unittest(TestHexOctBin) if __name__ == "__main__": test_main()