Skip to content

Commit 03ac9e6

Browse files
[3.11] IDLE: fix config_key htest (GH-112545) (#112547)
Change 'Dialog' to 'Window' in two places to match the name of the config_key class being tested. (cherry picked from commit 81261fa) Co-authored-by: Terry Jan Reedy <[email protected]>
1 parent f6edb83 commit 03ac9e6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Lib/idlelib/config_key.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,4 +351,4 @@ def cancel(self, event=None):
351351
main('idlelib.idle_test.test_config_key', verbosity=2, exit=False)
352352

353353
from idlelib.idle_test.htest import run
354-
run(GetKeysDialog)
354+
run(GetKeysWindow)

Lib/idlelib/idle_test/htest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def _wrapper(parent): # htest #
152152
"Best to close editor first."
153153
}
154154

155-
GetKeysDialog_spec = {
155+
GetKeysWindow_spec = {
156156
'file': 'config_key',
157157
'kwds': {'title': 'Test keybindings',
158158
'action': 'find-again',

0 commit comments

Comments
 (0)