]> granicus.if.org Git - python/commitdiff
Trivial typo.
authorEric Smith <eric@trueblade.com>
Wed, 19 Mar 2008 12:15:10 +0000 (12:15 +0000)
committerEric Smith <eric@trueblade.com>
Wed, 19 Mar 2008 12:15:10 +0000 (12:15 +0000)
Lib/test/test_int_literal.py

index f4f08ac88f055e491adf8372bb7e3ba7cab954d8..ef376ac7a32c59b0874256510351fc15e7845bac 100644 (file)
@@ -10,7 +10,7 @@ import warnings
 warnings.filterwarnings("ignore", "hex/oct constants", FutureWarning,
                         "<string>")
 
-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()