summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2008-03-19 12:15:10 (GMT)
committerEric Smith <eric@trueblade.com>2008-03-19 12:15:10 (GMT)
commit8ff496359401ceaf05813ae3f982c4f0c0ffd799 (patch)
treed5923eb1f53e18a1c811b8a763ef5b336276b74c /Lib
parente50444597218da4fc9c7397c06e857125aa29d98 (diff)
downloadcpython-8ff496359401ceaf05813ae3f982c4f0c0ffd799.zip
cpython-8ff496359401ceaf05813ae3f982c4f0c0ffd799.tar.gz
cpython-8ff496359401ceaf05813ae3f982c4f0c0ffd799.tar.bz2
Trivial typo.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_int_literal.py4
1 files 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,
"<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()