From 8ff496359401ceaf05813ae3f982c4f0c0ffd799 Mon Sep 17 00:00:00 2001 From: Eric Smith Date: Wed, 19 Mar 2008 12:15:10 +0000 Subject: Trivial typo. --- Lib/test/test_int_literal.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_int_literal.py b/Lib/test/test_int_literal.py index f4f08ac..ef376ac 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() -- cgit v0.12