diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-06-01 08:22:21 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-06-01 08:22:21 (GMT) |
commit | 05ef4d3eadeda4a74c4448b67ccf9c5d94422fb9 (patch) | |
tree | 7873f5a670069faa08059733b5e18c2d2b67045e /Lib/tkinter/test | |
parent | 7be74cffbe96e9649a331260ba0fbf2c2b4a1de0 (diff) | |
parent | 8381f90ee0564745c5b0f59b4ca7e6cef2a54565 (diff) | |
download | cpython-05ef4d3eadeda4a74c4448b67ccf9c5d94422fb9.zip cpython-05ef4d3eadeda4a74c4448b67ccf9c5d94422fb9.tar.gz cpython-05ef4d3eadeda4a74c4448b67ccf9c5d94422fb9.tar.bz2 |
Added missed calls of splitlist().
Diffstat (limited to 'Lib/tkinter/test')
-rw-r--r-- | Lib/tkinter/test/test_ttk/test_functions.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/tkinter/test/test_ttk/test_functions.py b/Lib/tkinter/test/test_ttk/test_functions.py index 8dd8753..41e6311 100644 --- a/Lib/tkinter/test/test_ttk/test_functions.py +++ b/Lib/tkinter/test/test_ttk/test_functions.py @@ -407,8 +407,6 @@ class InternalFunctionsTest(unittest.TestCase): ('name', 'no_minus', 'value')) self.assertRaises(ValueError, ttk._list_from_layouttuple, tk, ('something', '-children')) # no children - self.assertRaises(ValueError, ttk._list_from_layouttuple, tk, - ('something', '-children', 'value')) # invalid children def test_val_or_dict(self): |