diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-03-19 11:27:24 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-03-19 11:27:24 (GMT) |
commit | ed1fe6be061d3c0be9d8b7735b65bd17db07850c (patch) | |
tree | c10dbef885c17dbdac7ee277fb39d05cbbe337ee /Lib/tkinter | |
parent | aced69fd3f210099a31a951d6ac6440c95a76630 (diff) | |
parent | e185341bfa177932b00a03a1d8b1d0e0e7795919 (diff) | |
download | cpython-ed1fe6be061d3c0be9d8b7735b65bd17db07850c.zip cpython-ed1fe6be061d3c0be9d8b7735b65bd17db07850c.tar.gz cpython-ed1fe6be061d3c0be9d8b7735b65bd17db07850c.tar.bz2 |
Fix usage of the unittest.skip decorator.
Diffstat (limited to 'Lib/tkinter')
-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) |