diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-01-13 12:22:45 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-01-13 12:22:45 (GMT) |
commit | 2e27ddd5a730ae798c8fa9993d7f855cca5a4754 (patch) | |
tree | d73d2a55cb170f5bd756b5780da3c3aa40f7d07f /Lib/lib-tk/test | |
parent | 011097395b8198f0a0bdd57a4fafecf17d1288a4 (diff) | |
download | cpython-2e27ddd5a730ae798c8fa9993d7f855cca5a4754.zip cpython-2e27ddd5a730ae798c8fa9993d7f855cca5a4754.tar.gz cpython-2e27ddd5a730ae798c8fa9993d7f855cca5a4754.tar.bz2 |
Fixed typo.
Diffstat (limited to 'Lib/lib-tk/test')
-rw-r--r-- | Lib/lib-tk/test/test_ttk/test_widgets.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/lib-tk/test/test_ttk/test_widgets.py b/Lib/lib-tk/test/test_ttk/test_widgets.py index 15c2d54..f0777ab 100644 --- a/Lib/lib-tk/test/test_ttk/test_widgets.py +++ b/Lib/lib-tk/test/test_ttk/test_widgets.py @@ -21,7 +21,7 @@ class StandardTtkOptionsTests(StandardOptionsTests): widget = self.create() self.assertEqual(widget['class'], '') 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, 'class', 'Foo', errmsg=errmsg) widget2 = self.create(class_='Foo') @@ -577,7 +577,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) |