From: Serhiy Storchaka Date: Mon, 13 Jan 2014 12:23:18 +0000 (+0200) Subject: Fixed typo. X-Git-Tag: v3.3.4rc1~77 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6cbc5f784fd07f1c1df3e749d429b3bef9d9cfd6;p=python Fixed typo. --- diff --git a/Lib/tkinter/test/test_ttk/test_widgets.py b/Lib/tkinter/test/test_ttk/test_widgets.py index efc3e725c6..3ac14be6d5 100644 --- a/Lib/tkinter/test/test_ttk/test_widgets.py +++ b/Lib/tkinter/test/test_ttk/test_widgets.py @@ -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)