diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2017-09-14 18:51:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-14 18:51:51 -0400 |
commit | d384a81f557dab0b142bfcc9850bc68df46496ef (patch) | |
tree | 712308a32f191b8594bc9861de1ceb6bb2fb9517 /Lib/idlelib/idle_test/test_configdialog.py | |
parent | 6a396c9807b1674a24e240731f18e20de97117a5 (diff) | |
download | cpython-git-d384a81f557dab0b142bfcc9850bc68df46496ef.tar.gz |
bpo-31480: IDLE - fix tests to pass with zzdummy extension disabled. (#3590)
Enabled by default was a temporary expedient. The fix is to add a user override to enable.
Diffstat (limited to 'Lib/idlelib/idle_test/test_configdialog.py')
-rw-r--r-- | Lib/idlelib/idle_test/test_configdialog.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/idlelib/idle_test/test_configdialog.py b/Lib/idlelib/idle_test/test_configdialog.py index cae7186415..dc7f69c2af 100644 --- a/Lib/idlelib/idle_test/test_configdialog.py +++ b/Lib/idlelib/idle_test/test_configdialog.py @@ -820,6 +820,7 @@ class KeysPageTest(unittest.TestCase): self.assertEqual(d.load_keys_list.called, 1) def test_keybinding(self): + idleConf.SetOption('extensions', 'ZzDummy', 'enable', 'True') d = self.page d.custom_name.set('my custom keys') d.bindingslist.delete(0, 'end') |