Fixed typo.

This commit is contained in:
Serhiy Storchaka 2014-01-13 14:23:18 +02:00
parent 939e2db48d
commit 6cbc5f784f
1 changed files with 1 additions and 1 deletions

View File

@ -576,7 +576,7 @@ class PanedWindowTest(AbstractWidgetTest, unittest.TestCase):
widget = self.create() widget = self.create()
self.assertEqual(str(widget['orient']), 'vertical') self.assertEqual(str(widget['orient']), 'vertical')
errmsg='attempt to change read-only option' 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' errmsg='Attempt to change read-only option'
self.checkInvalidParam(widget, 'orient', 'horizontal', self.checkInvalidParam(widget, 'orient', 'horizontal',
errmsg=errmsg) errmsg=errmsg)