diff options
author | Georg Brandl <georg@python.org> | 2010-12-19 10:17:46 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-12-19 10:17:46 (GMT) |
commit | cf8a209ab7c7075024401335bf8a624508be458e (patch) | |
tree | b5277c71a6ed97fad59fe0d55f7c5b9b5efa9c63 | |
parent | aedd2899c27c71dde84837fab9ac119425b7f4dc (diff) | |
download | cpython-cf8a209ab7c7075024401335bf8a624508be458e.zip cpython-cf8a209ab7c7075024401335bf8a624508be458e.tar.gz cpython-cf8a209ab7c7075024401335bf8a624508be458e.tar.bz2 |
Temporarily skip test failing with newer ttk.
-rw-r--r-- | Lib/tkinter/test/test_ttk/test_widgets.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/tkinter/test/test_ttk/test_widgets.py b/Lib/tkinter/test/test_ttk/test_widgets.py index 35824ea..cd00a61 100644 --- a/Lib/tkinter/test/test_ttk/test_widgets.py +++ b/Lib/tkinter/test/test_ttk/test_widgets.py @@ -1,5 +1,6 @@ import unittest import tkinter +import os from tkinter import ttk from test.support import requires, run_unittest @@ -925,7 +926,8 @@ class TreeviewTest(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 def test_heading_callback(self): def simulate_heading_click(x, y): support.simulate_mouse_click(self.tv, x, y) |