summaryrefslogtreecommitdiffstats
path: root/tests/linsert.test
diff options
context:
space:
mode:
authorstanton <stanton@noemail.net>1999-05-04 01:33:10 (GMT)
committerstanton <stanton@noemail.net>1999-05-04 01:33:10 (GMT)
commit4cd5c2afa56d3213c75f7dbb10b9b5482fee6d8a (patch)
treeeaaa5805340e4ca7c3da51d93e2076081ec153e5 /tests/linsert.test
parent2158dc2715350942b24390145f6d62f43fa0007b (diff)
downloadtcl-4cd5c2afa56d3213c75f7dbb10b9b5482fee6d8a.zip
tcl-4cd5c2afa56d3213c75f7dbb10b9b5482fee6d8a.tar.gz
tcl-4cd5c2afa56d3213c75f7dbb10b9b5482fee6d8a.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]: FossilOrigin-Name: 2728afa3b5f0b6707d8655c44ac742ffa5dba059
Diffstat (limited to 'tests/linsert.test')
-rw-r--r--tests/linsert.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/linsert.test b/tests/linsert.test
index 5c54d92..456ea3e 100644
--- a/tests/linsert.test
+++ b/tests/linsert.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: linsert.test,v 1.3 1999/04/16 00:47:30 stanton Exp $
+# RCS: @(#) $Id: linsert.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]
@@ -86,7 +86,7 @@ test linsert-2.2 {linsert errors} {
} {1 {wrong # args: should be "linsert list index element ?element ...?"}}
test linsert-2.3 {linsert errors} {
list [catch {linsert a 12x 2} msg] $msg
-} {1 {bad index "12x": must be integer or "end"}}
+} {1 {syntax error in expression "12x"}}
test linsert-2.4 {linsert errors} {
list [catch {linsert \{ 12 2} msg] $msg
} {1 {unmatched open brace in list}}