diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-02 10:54:58 +0200 |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-02 10:54:58 +0200 |
| commit | bf30c9f01ab093fe1f0753a2332dea4ed99c7d9c (patch) | |
| tree | ba0b19f5b7ff20fcf57a8237bfc842460ee9af72 /Lib/tkinter/test | |
| parent | d58972c297414a43f8976f4d7f9cf4f2ccc850ca (diff) | |
| parent | 007c0477f5794a7955e5f7483a819b310f0120fb (diff) | |
| download | cpython-git-bf30c9f01ab093fe1f0753a2332dea4ed99c7d9c.tar.gz | |
Issue #10734: Fix and re-enable test_ttk test_heading_callback.
Diffstat (limited to 'Lib/tkinter/test')
| -rw-r--r-- | Lib/tkinter/test/test_ttk/test_widgets.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/tkinter/test/test_ttk/test_widgets.py b/Lib/tkinter/test/test_ttk/test_widgets.py index 807b57da5d..55dc2f080b 100644 --- a/Lib/tkinter/test/test_ttk/test_widgets.py +++ b/Lib/tkinter/test/test_ttk/test_widgets.py @@ -1369,12 +1369,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 |
