diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2003-05-05 16:52:31 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2003-05-05 16:52:31 (GMT) |
commit | 805d2851fd086d66ae78c4a69446463105d1cba9 (patch) | |
tree | a8253bd78207850ea03198ea95d8d0557dd8f582 /tests/basic.test | |
parent | 8fb4b544191b41c53d33158bd500989d683eae03 (diff) | |
download | tcl-805d2851fd086d66ae78c4a69446463105d1cba9.zip tcl-805d2851fd086d66ae78c4a69446463105d1cba9.tar.gz tcl-805d2851fd086d66ae78c4a69446463105d1cba9.tar.bz2 |
Corrected error message for grammar and spelling.
Diffstat (limited to 'tests/basic.test')
-rw-r--r-- | tests/basic.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/basic.test b/tests/basic.test index c45a763..11b7bed 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.25 2003/02/16 01:36:32 msofer Exp $ +# RCS: @(#) $Id: basic.test,v 1.25.2.1 2003/05/05 16:52:33 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} |