diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2013-07-30 05:36:48 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2013-07-30 05:36:48 (GMT) |
commit | 4bd31292c2a40b8a5e2d1a985322c8b96ca3af76 (patch) | |
tree | 371c114abdff9e81f7e676f6c726c317b4df35fe | |
parent | fdfb0050bb4e79724da052e06bab1c875076832a (diff) | |
download | cpython-4bd31292c2a40b8a5e2d1a985322c8b96ca3af76.zip cpython-4bd31292c2a40b8a5e2d1a985322c8b96ca3af76.tar.gz cpython-4bd31292c2a40b8a5e2d1a985322c8b96ca3af76.tar.bz2 |
Make all idle test case names end with 'Test'.
-rw-r--r-- | Lib/idlelib/idle_test/test_calltips.py | 2 | ||||
-rw-r--r-- | Lib/idlelib/idle_test/test_config_name.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/idle_test/test_calltips.py b/Lib/idlelib/idle_test/test_calltips.py index a956967..ed28a21 100644 --- a/Lib/idlelib/idle_test/test_calltips.py +++ b/Lib/idlelib/idle_test/test_calltips.py @@ -1,7 +1,7 @@ import unittest import idlelib.CallTips as ct -class Test_get_entity(unittest.TestCase): +class Get_entityTest(unittest.TestCase): def test_bad_entity(self): self.assertIsNone(ct.get_entity('1/0')) def test_good_entity(self): diff --git a/Lib/idlelib/idle_test/test_config_name.py b/Lib/idlelib/idle_test/test_config_name.py index 1546d2f..40e72b9 100644 --- a/Lib/idlelib/idle_test/test_config_name.py +++ b/Lib/idlelib/idle_test/test_config_name.py @@ -22,7 +22,7 @@ class Dummy_name_dialog: orig_mbox = name_dialog_module.tkMessageBox showerror = Mbox.showerror -class TestConfigName(unittest.TestCase): +class ConfigNameTest(unittest.TestCase): dialog = Dummy_name_dialog() @classmethod |