aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/tkinter/test/test_tkinter/test_widgets.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-07-22 21:41:48 +0300
committerGitHub <noreply@github.com>2018-07-22 21:41:48 +0300
commitc75c1e0e8aeb720ac3fcfab119b70cabba4e8235 (patch)
tree9a9a16f915ae27b72a14fb45e2fe6d156d20ae9d /Lib/tkinter/test/test_tkinter/test_widgets.py
parente271ca78e37a502b3dc1036f824aa3999efcd56b (diff)
downloadcpython-c75c1e0e8aeb720ac3fcfab119b70cabba4e8235.tar.gz
cpython-c75c1e0e8aeb720ac3fcfab119b70cabba4e8235.zip
bpo-34189: Fix checking for bugfix Tcl version. (GH-8397)
Diffstat (limited to 'Lib/tkinter/test/test_tkinter/test_widgets.py')
-rw-r--r--Lib/tkinter/test/test_tkinter/test_widgets.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/tkinter/test/test_tkinter/test_widgets.py b/Lib/tkinter/test/test_tkinter/test_widgets.py
index cd2a380793a..e4c9d337ba7 100644
--- a/Lib/tkinter/test/test_tkinter/test_widgets.py
+++ b/Lib/tkinter/test/test_tkinter/test_widgets.py
@@ -717,9 +717,7 @@ class ListboxTest(AbstractWidgetTest, unittest.TestCase):
self.checkEnumParam(widget, 'activestyle',
'dotbox', 'none', 'underline')
- @requires_tcl(8, 6, 5)
- def test_justify(self):
- AbstractWidgetTest.test_justify(self)
+ test_justify = requires_tcl(8, 6, 5)(StandardOptionsTests.test_justify)
def test_listvariable(self):
widget = self.create()