diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-02 08:54:17 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-02 08:54:17 (GMT) |
commit | 090b6b1baf0f976cea93d5a697d26e09ea855b38 (patch) | |
tree | bfc2e14bbd323bbd8714c967b71e0ee0b1528b63 /Lib/lib-tk/test | |
parent | dd80816973a0edb28b8c23b402502dcd3755834d (diff) | |
download | cpython-090b6b1baf0f976cea93d5a697d26e09ea855b38.zip cpython-090b6b1baf0f976cea93d5a697d26e09ea855b38.tar.gz cpython-090b6b1baf0f976cea93d5a697d26e09ea855b38.tar.bz2 |
Issue #10734: Fix and re-enable test_ttk test_heading_callback.
Diffstat (limited to 'Lib/lib-tk/test')
-rw-r--r-- | Lib/lib-tk/test/test_ttk/test_widgets.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/lib-tk/test/test_ttk/test_widgets.py b/Lib/lib-tk/test/test_ttk/test_widgets.py index 7c0a5f1..86e8732 100644 --- a/Lib/lib-tk/test/test_ttk/test_widgets.py +++ b/Lib/lib-tk/test/test_ttk/test_widgets.py @@ -1370,12 +1370,10 @@ class TreeviewTest(AbstractWidgetTest, unittest.TestCase): self.assertRaises(Tkinter.TclError, self.tv.heading, '#0', anchor=1) - # XXX skipping for now; should be fixed to work with newer ttk - @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) - self.tv.update_idletasks() + self.tv.update() success = [] # no success for now |