Skip to content

Commit ff0aa91

Browse files
authored
[3.14] gh-145736: Fix test_tkinter test_configure_values test case backport miss for Tk 9. (#149435)
1 parent 368aafb commit ff0aa91

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

Lib/test/test_tkinter/test_widgets.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,8 @@ def test_configure_values(self):
576576
else:
577577
expected = (42, 3.14, '', 'any string')
578578
self.checkParam(widget, 'values', (42, 3.14, '', 'any string'),
579-
expected='42 3.14 {} {any string}')
579+
expected=expected)
580+
580581
self.checkParam(widget, 'values', '')
581582

582583
def test_configure_wrap(self):
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix test_tkinter test_configure_values test case backport miss for Tk 9.

0 commit comments

Comments
 (0)