summaryrefslogtreecommitdiffstats
path: root/tests/basic.test
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2003-05-05 16:48:53 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2003-05-05 16:48:53 (GMT)
commit5940eaeb9273d7c2c5eaa2e9db99cf403eb3a8fa (patch)
tree2f36c7e5de9f593eccf016c132571ba2e78c41b8 /tests/basic.test
parentded0ebcd4576288ef13365598a179dfee8fce1ca (diff)
downloadtcl-5940eaeb9273d7c2c5eaa2e9db99cf403eb3a8fa.zip
tcl-5940eaeb9273d7c2c5eaa2e9db99cf403eb3a8fa.tar.gz
tcl-5940eaeb9273d7c2c5eaa2e9db99cf403eb3a8fa.tar.bz2
Corrected error message for grammar and spelling.
Diffstat (limited to 'tests/basic.test')
-rw-r--r--tests/basic.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/basic.test b/tests/basic.test
index c25ef2b..0257ded 100644
--- a/tests/basic.test
+++ b/tests/basic.test
@@ -15,7 +15,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: basic.test,v 1.26 2003/03/04 23:46:10 dgp Exp $
+# RCS: @(#) $Id: basic.test,v 1.27 2003/05/05 16:48:54 dkf Exp $
#
package require tcltest 2
@@ -132,7 +132,7 @@ test basic-12.1 {Tcl_HideCommand, names of hidden cmds can't have namespace qual
list [catch {test_interp hide test_ns_basic::p x} msg] $msg \
[catch {test_interp hide x test_ns_basic::p} msg1] $msg1 \
[interp delete test_interp]
-} {1 {can only hide global namespace commands (use rename then hide)} 1 {cannot use namespace qualifiers as hidden commandtoken (rename)} {}}
+} {1 {can only hide global namespace commands (use rename then hide)} 1 {cannot use namespace qualifiers in hidden command token (rename)} {}}
test basic-12.2 {Tcl_HideCommand, a hidden cmd remembers its containing namespace} {
catch {namespace delete test_ns_basic}