summaryrefslogtreecommitdiffstats
path: root/tests/interp.test
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2003-05-05 16:48:53 (GMT)
committerdkf <dkf@noemail.net>2003-05-05 16:48:53 (GMT)
commit197357716ddb9a6d61b0e1e750480df22c3697ee (patch)
tree2f36c7e5de9f593eccf016c132571ba2e78c41b8 /tests/interp.test
parent24425af3783cfa0a20c7c3ed4d14a334e5377cc5 (diff)
downloadtcl-197357716ddb9a6d61b0e1e750480df22c3697ee.zip
tcl-197357716ddb9a6d61b0e1e750480df22c3697ee.tar.gz
tcl-197357716ddb9a6d61b0e1e750480df22c3697ee.tar.bz2
Corrected error message for grammar and spelling.
FossilOrigin-Name: 238c25b34ca9cabbd6c2b2f42d343187c7f92aaf
Diffstat (limited to 'tests/interp.test')
-rw-r--r--tests/interp.test8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/interp.test b/tests/interp.test
index 43599b8..5ce02d6 100644
--- a/tests/interp.test
+++ b/tests/interp.test
@@ -10,7 +10,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: interp.test,v 1.20 2003/03/12 17:52:36 dgp Exp $
+# RCS: @(#) $Id: interp.test,v 1.21 2003/05/05 16:48:54 dkf Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2.1
@@ -1498,7 +1498,7 @@ test interp-20.45 {interp hide vs namespaces} {
set l [list [catch {interp hide a foo::x} msg] $msg]
interp delete a
set l
-} {1 {cannot use namespace qualifiers as hidden commandtoken (rename)}}
+} {1 {cannot use namespace qualifiers in hidden command token (rename)}}
test interp-20.46 {interp hide vs namespaces} {
catch {interp delete a}
interp create a
@@ -1519,7 +1519,7 @@ test interp-20.47 {interp hide vs namespaces} {
set l [list [catch {interp hide a x foo::x} msg] $msg]
interp delete a
set l
-} {1 {cannot use namespace qualifiers as hidden commandtoken (rename)}}
+} {1 {cannot use namespace qualifiers in hidden command token (rename)}}
test interp-20.48 {interp hide vs namespaces} {
catch {interp delete a}
interp create a
@@ -1530,7 +1530,7 @@ test interp-20.48 {interp hide vs namespaces} {
set l [list [catch {interp hide a foo::x bar::x} msg] $msg]
interp delete a
set l
-} {1 {cannot use namespace qualifiers as hidden commandtoken (rename)}}
+} {1 {cannot use namespace qualifiers in hidden command token (rename)}}
test interp-21.1 {interp hidden} {
interp hidden {}