Commit 9ba8d6bf authored by Terry Jan Reedy's avatar Terry Jan Reedy

Make all idle test case names end with 'Test'.

parent aea6c115
......@@ -2,7 +2,7 @@ import unittest
import idlelib.CallTips as ct
CTi = ct.CallTips()
class Test_get_entity(unittest.TestCase):
class Get_entityTest(unittest.TestCase):
# In 3.x, get_entity changed from 'instance method' to module function
# since 'self' not used. Use dummy instance until change 2.7 also.
def test_bad_entity(self):
......
......@@ -22,7 +22,7 @@ class Dummy_name_dialog(object):
orig_mbox = name_dialog_module.tkMessageBox
showerror = Mbox.showerror
class TestConfigName(unittest.TestCase):
class ConfigNameTest(unittest.TestCase):
dialog = Dummy_name_dialog()
@classmethod
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment