diff options
author | nijtmans <nijtmans> | 2008-07-23 23:24:21 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2008-07-23 23:24:21 (GMT) |
commit | 535ee80de6d5c048f9a3ae7a5956b114e9a5e3f6 (patch) | |
tree | 44da117febb11bc69d260540340f018933aa8b45 /tests/ttk | |
parent | 8daba6660a12dce054485bf87cef227741ac76a0 (diff) | |
download | tk-535ee80de6d5c048f9a3ae7a5956b114e9a5e3f6.zip tk-535ee80de6d5c048f9a3ae7a5956b114e9a5e3f6.tar.gz tk-535ee80de6d5c048f9a3ae7a5956b114e9a5e3f6.tar.bz2 |
fix [2021443] inconsistant "wrong # args" messages (for Tk)
Diffstat (limited to 'tests/ttk')
-rw-r--r-- | tests/ttk/ttk.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ttk/ttk.test b/tests/ttk/ttk.test index a1430ff..315aea2 100644 --- a/tests/ttk/ttk.test +++ b/tests/ttk/ttk.test @@ -598,10 +598,10 @@ test ttk-14.3 "-textvariable in nonexistant namespace" -body { test ttk-15.1 "style element create: insufficient args" -body { ttk::style element create -} -returnCodes 1 -result "wrong # args: should be \"ttk::style element create name type ?options...?\"" +} -returnCodes 1 -result "wrong # args: should be \"ttk::style element create name type ?-option value ...?\"" test ttk-15.2 "style element create: insufficient args" -body { ttk::style element create plain.background -} -returnCodes 1 -result "wrong # args: should be \"ttk::style element create name type ?options...?\"" +} -returnCodes 1 -result "wrong # args: should be \"ttk::style element create name type ?-option value ...?\"" test ttk-15.3 "style element create: insufficient args" -body { ttk::style element create plain.background from } -returnCodes 1 -result "wrong # args: should be \"theme ?element?\"" |