diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-01-13 12:24:11 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-01-13 12:24:11 (GMT) |
commit | 676bf737935a9e240178f23dea9843242a11779e (patch) | |
tree | a90551faca3396fe56945fcc82245da97fe90b46 /Lib/tkinter/test | |
parent | 95be7ff911536ad6c40b5ae47fca0d3492836832 (diff) | |
parent | 6cbc5f784fd07f1c1df3e749d429b3bef9d9cfd6 (diff) | |
download | cpython-676bf737935a9e240178f23dea9843242a11779e.zip cpython-676bf737935a9e240178f23dea9843242a11779e.tar.gz cpython-676bf737935a9e240178f23dea9843242a11779e.tar.bz2 |
Fixed typo.
Diffstat (limited to 'Lib/tkinter/test')
-rw-r--r-- | Lib/tkinter/test/test_ttk/test_widgets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tkinter/test/test_ttk/test_widgets.py b/Lib/tkinter/test/test_ttk/test_widgets.py index efc3e72..3ac14be 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) |