diff options
-rw-r--r-- | Lib/test/test_tix.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/Lib/test/test_tix.py b/Lib/test/test_tix.py index a2fb357..8a60c7c 100644 --- a/Lib/test/test_tix.py +++ b/Lib/test/test_tix.py @@ -26,12 +26,9 @@ class TestTix(unittest.TestCase): else: self.addCleanup(self.root.destroy) - def test_tix_deprecation(self): - with self.assertWarns(DeprecationWarning): - import_helper.import_fresh_module( - 'tkinter.tix', - fresh=('tkinter.tix',), - ) + def test_tix_available(self): + # this test is just here to make setUp run + pass if __name__ == '__main__': |