summaryrefslogtreecommitdiffstats
path: root/tests/set-old.test
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2001-03-15 14:36:31 (GMT)
committerdkf <dkf@noemail.net>2001-03-15 14:36:31 (GMT)
commit356c4629917cb4a00dffe1dc1951b0ec0ede409b (patch)
treea420e978652bba97d00b65890255f15c7e78358b /tests/set-old.test
parentec82189eadc5d8bd45ae0e1a3e3118e93281861b (diff)
downloadtcl-356c4629917cb4a00dffe1dc1951b0ec0ede409b.zip
tcl-356c4629917cb4a00dffe1dc1951b0ec0ede409b.tar.gz
tcl-356c4629917cb4a00dffe1dc1951b0ec0ede409b.tar.bz2
Error behaviour of [unset] was changed to agree with documentation, so
must change associated test as well. FossilOrigin-Name: ae833bf3821708b056b2cfddf8e34807ee2e5c84
Diffstat (limited to 'tests/set-old.test')
-rw-r--r--tests/set-old.test18
1 files changed, 4 insertions, 14 deletions
diff --git a/tests/set-old.test b/tests/set-old.test
index 1cf6aba..ffb6501 100644
--- a/tests/set-old.test
+++ b/tests/set-old.test
@@ -13,7 +13,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: set-old.test,v 1.13 2001/03/06 14:45:03 dkf Exp $
+# RCS: @(#) $Id: set-old.test,v 1.14 2001/03/15 14:36:32 dkf Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest
@@ -204,7 +204,9 @@ test set-old-7.1 {unset command} {
} {0 0 0 1}
test set-old-7.2 {unset command} {
list [catch {unset} msg] $msg
-} {1 {wrong # args: should be "unset ?-nocomplain? ?--? ?varName varName ...?"}}
+} {0 {}}
+# Used to return:
+#{1 {wrong # args: should be "unset ?-nocomplain? ?--? ?varName varName ...?"}}
test set-old-7.3 {unset command} {
catch {unset a}
list [catch {unset a} msg] $msg
@@ -915,15 +917,3 @@ catch {unset aVaRnAmE}
# cleanup
::tcltest::cleanupTests
return
-
-
-
-
-
-
-
-
-
-
-
-