diff options
Diffstat (limited to 'Lib/test/test_tkinter/support.py')
-rw-r--r-- | Lib/test/test_tkinter/support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_tkinter/support.py b/Lib/test/test_tkinter/support.py index a37705f0ae6..ebb9e00ff91 100644 --- a/Lib/test/test_tkinter/support.py +++ b/Lib/test/test_tkinter/support.py @@ -14,7 +14,7 @@ class AbstractTkTest: # Some window managers can maximize new windows. cls.root.wm_state('normal') try: - cls.root.wm_attributes('-zoomed', False) + cls.root.wm_attributes(zoomed=False) except tkinter.TclError: pass |