diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-03-19 11:25:20 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-03-19 11:25:20 (GMT) |
commit | ae4ef4d2ff2d49628516294837249493f43a5047 (patch) | |
tree | 9a095a07ee1b9a779263774f3ed44f30ba0e7fe0 /Lib | |
parent | 0492ec07e00ac85184c50d3dfad44b3b8d173614 (diff) | |
download | cpython-ae4ef4d2ff2d49628516294837249493f43a5047.zip cpython-ae4ef4d2ff2d49628516294837249493f43a5047.tar.gz cpython-ae4ef4d2ff2d49628516294837249493f43a5047.tar.bz2 |
Fix usage of the unittest.skip decorator.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/tkinter/test/test_ttk/test_widgets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tkinter/test/test_ttk/test_widgets.py b/Lib/tkinter/test/test_ttk/test_widgets.py index c2231dc..45a686a 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) |