mirror of https://github.com/python/cpython
bpo-45020: Don't test IDLE with frozen module. (GH-28344)
Otherwise, test would need special import.
This commit is contained in:
parent
a65c86889e
commit
369bf949cc
|
@ -136,8 +136,8 @@ class ModuleNameTest(unittest.TestCase):
|
|||
dialog = self.Dummy_ModuleName('idlelib')
|
||||
self.assertTrue(dialog.entry_ok().endswith('__init__.py'))
|
||||
self.assertEqual(dialog.entry_error['text'], '')
|
||||
dialog = self.Dummy_ModuleName('os.path')
|
||||
self.assertTrue(dialog.entry_ok().endswith('path.py'))
|
||||
dialog = self.Dummy_ModuleName('idlelib.idle')
|
||||
self.assertTrue(dialog.entry_ok().endswith('idle.py'))
|
||||
self.assertEqual(dialog.entry_error['text'], '')
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue