diff options
author | Steve Bennett <steveb@workware.net.au> | 2011-12-12 10:42:18 +1000 |
---|---|---|
committer | Steve Bennett <steveb@workware.net.au> | 2011-12-12 13:44:43 +1000 |
commit | d377de0daf8c8e257b85594242ad094420f12cdc (patch) | |
tree | fa84309829cc2a3f4c38189cb8e70c2a1a053b73 /tests/dict.test | |
parent | 7cff4d617b4d89c73a49d5b57f851c2a74145b03 (diff) | |
download | jimtcl-d377de0daf8c8e257b85594242ad094420f12cdc.zip jimtcl-d377de0daf8c8e257b85594242ad094420f12cdc.tar.gz jimtcl-d377de0daf8c8e257b85594242ad094420f12cdc.tar.bz2 |
Strip leading & from proc error messages
And some more Tcl8.6 compatible error messages
Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'tests/dict.test')
-rw-r--r-- | tests/dict.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/dict.test b/tests/dict.test index 3a0218b..1b3f5a5 100644 --- a/tests/dict.test +++ b/tests/dict.test @@ -208,7 +208,7 @@ test dict-23.2 {dict unset command} -returnCodes error -body { dict unset dictVar a } -cleanup { unset dictVar -} -result {invalid dictionary value: must be a list with an even number of elements} +} -result {missing value to go with key} test dict-23.3 {dict unset command} -setup { unset -nocomplain dictVar @@ -225,6 +225,6 @@ test dict-23.4 {dict unset command: write failure} -setup { dict unset dictVar a } -returnCodes error -cleanup { unset dictVar -} -result {invalid dictionary value: must be a list with an even number of elements} +} -result {missing value to go with key} testreport |