From: Serhiy Storchaka Date: Tue, 19 Mar 2013 11:25:20 +0000 (+0200) Subject: Fix usage of the unittest.skip decorator. X-Git-Tag: v3.2.4rc1~19^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ae4ef4d2ff2d49628516294837249493f43a5047;p=thirdparty%2FPython%2Fcpython.git Fix usage of the unittest.skip decorator. --- diff --git a/Lib/tkinter/test/test_ttk/test_widgets.py b/Lib/tkinter/test/test_ttk/test_widgets.py index c2231dc32416..45a686aed4ff 100644 --- a/Lib/tkinter/test/test_ttk/test_widgets.py +++ b/Lib/tkinter/test/test_ttk/test_widgets.py @@ -947,7 +947,7 @@ class TreeviewTest(unittest.TestCase): anchor=1) # XXX skipping for now; should be fixed to work with newer ttk - @unittest.skip + @unittest.skip("skipping pending resolution of Issue #10734") def test_heading_callback(self): def simulate_heading_click(x, y): support.simulate_mouse_click(self.tv, x, y)