summaryrefslogtreecommitdiffstats
path: root/tests/interp.test
diff options
context:
space:
mode:
authornijtmans <nijtmans@noemail.net>2008-07-13 23:15:21 (GMT)
committernijtmans <nijtmans@noemail.net>2008-07-13 23:15:21 (GMT)
commit8c30ab9d75b1daed5f852f0d917fd53b50048545 (patch)
treeaacaf7cde84808f89893f7542a9a079c3e8603b1 /tests/interp.test
parent94ce7c788f15947d1c379e48ec20d421866c5333 (diff)
downloadtcl-8c30ab9d75b1daed5f852f0d917fd53b50048545.zip
tcl-8c30ab9d75b1daed5f852f0d917fd53b50048545.tar.gz
tcl-8c30ab9d75b1daed5f852f0d917fd53b50048545.tar.bz2
more consistent wrong # arg messages: change all messages containing ?options? to the form ?-option value ...?
FossilOrigin-Name: 7dcec0e5e289de4aed4290b3ee93e1e425c765e0
Diffstat (limited to 'tests/interp.test')
-rw-r--r--tests/interp.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/interp.test b/tests/interp.test
index a9c9e8d..c47b8a7 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.58 2008/07/13 09:03:35 msofer Exp $
+# RCS: @(#) $Id: interp.test,v 1.59 2008/07/13 23:15:22 nijtmans Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2.1
@@ -3281,10 +3281,10 @@ test interp-34.12 {time limit extension in callbacks} -setup {
test interp-35.1 {interp limit syntax} -body {
interp limit
-} -returnCodes error -result {wrong # args: should be "interp limit path limitType ?options?"}
+} -returnCodes error -result {wrong # args: should be "interp limit path limitType ?-option value ...?"}
test interp-35.2 {interp limit syntax} -body {
interp limit {}
-} -returnCodes error -result {wrong # args: should be "interp limit path limitType ?options?"}
+} -returnCodes error -result {wrong # args: should be "interp limit path limitType ?-option value ...?"}
test interp-35.3 {interp limit syntax} -body {
interp limit {} foo
} -returnCodes error -result {bad limit type "foo": must be commands or time}