diff options
author | stanton <stanton> | 1999-05-04 01:33:10 (GMT) |
---|---|---|
committer | stanton <stanton> | 1999-05-04 01:33:10 (GMT) |
commit | cbfd4003a1395d9f6ec97acf62eb239f7c3fafca (patch) | |
tree | eaaa5805340e4ca7c3da51d93e2076081ec153e5 /tests/error.test | |
parent | 1b188bce8407ab0d9d83e72177b9fada135782d2 (diff) | |
download | tcl-cbfd4003a1395d9f6ec97acf62eb239f7c3fafca.zip tcl-cbfd4003a1395d9f6ec97acf62eb239f7c3fafca.tar.gz tcl-cbfd4003a1395d9f6ec97acf62eb239f7c3fafca.tar.bz2 |
* tests/cmdIL.test:
* tests/cmdMZ.test:
* tests/error.test:
* tests/lindex.test:
* tests/linsert.test:
* tests/lrange.test:
* tests/lreplace.test:
* tests/string.test:
* generic/tclCmdMZ.c (Tcl_StringObjCmd):
* generic/tclUtil.c (TclGetIntForIndex): Applied Jeff Hobbs's
string patch which includes the following changes [Bug: 1845]:
Diffstat (limited to 'tests/error.test')
-rw-r--r-- | tests/error.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/error.test b/tests/error.test index 45e8f1d..a4d311f 100644 --- a/tests/error.test +++ b/tests/error.test @@ -11,7 +11,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: error.test,v 1.3 1999/04/16 00:47:26 stanton Exp $ +# RCS: @(#) $Id: error.test,v 1.4 1999/05/04 01:33:12 stanton Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { source [file join [pwd] [file dirname [info script]] defs.tcl] @@ -38,12 +38,12 @@ test error-1.1 {simple errors from commands} { test error-1.2 {simple errors from commands} { catch {format [string compare]} b set b -} {wrong # args: should be "string compare string1 string2"} +} {wrong # args: should be "string compare string1 string2 ?length?"} test error-1.3 {simple errors from commands} { catch {format [string compare]} b set errorInfo -} {wrong # args: should be "string compare string1 string2" +} {wrong # args: should be "string compare string1 string2 ?length?" while executing "string compare"} |