diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2013-07-30 05:37:28 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2013-07-30 05:37:28 (GMT) |
commit | 5bcbdf15481ba26ccb52d2dda2719908002bf56b (patch) | |
tree | ff60ecfcff27dbb94928f84f7cd4e7c3a350f50d /Lib | |
parent | 299a221940127612ea7c08ae042928d696615027 (diff) | |
parent | 4bd31292c2a40b8a5e2d1a985322c8b96ca3af76 (diff) | |
download | cpython-5bcbdf15481ba26ccb52d2dda2719908002bf56b.zip cpython-5bcbdf15481ba26ccb52d2dda2719908002bf56b.tar.gz cpython-5bcbdf15481ba26ccb52d2dda2719908002bf56b.tar.bz2 |
Merge with 3.3
Diffstat (limited to 'Lib')
-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 |