Commit ca035a8b authored by Antoine Pitrou's avatar Antoine Pitrou

Fix buildbot failure

parent 4645bb61
...@@ -45,7 +45,7 @@ class LabeledScaleTest(unittest.TestCase): ...@@ -45,7 +45,7 @@ class LabeledScaleTest(unittest.TestCase):
# it tries calling instance attributes not yet defined. # it tries calling instance attributes not yet defined.
ttk.LabeledScale(variable=myvar) ttk.LabeledScale(variable=myvar)
if hasattr(sys, 'last_type'): if hasattr(sys, 'last_type'):
self.assertNotEqual(sys.last_type, tkinter.TclError) self.assertNotEqual(sys.last_type, Tkinter.TclError)
def test_initialization(self): def test_initialization(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment