]> granicus.if.org Git - python/commitdiff
Fixed typo.
authorSerhiy Storchaka <storchaka@gmail.com>
Mon, 13 Jan 2014 12:23:18 +0000 (14:23 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Mon, 13 Jan 2014 12:23:18 +0000 (14:23 +0200)
Lib/tkinter/test/test_ttk/test_widgets.py

index efc3e725c67a600e269b6816f43961de424b0572..3ac14be6d59149f7cbd9171154629c2c9ec6f5b5 100644 (file)
@@ -576,7 +576,7 @@ class PanedWindowTest(AbstractWidgetTest, unittest.TestCase):
         widget = self.create()
         self.assertEqual(str(widget['orient']), 'vertical')
         errmsg='attempt to change read-only option'
-        if get_tk_patchlevel() < (8, 6, 0): # actually this was changen in 8.6b3
+        if get_tk_patchlevel() < (8, 6, 0): # actually this was changed in 8.6b3
             errmsg='Attempt to change read-only option'
         self.checkInvalidParam(widget, 'orient', 'horizontal',
                 errmsg=errmsg)