diff options
author | dgp <dgp@users.sourceforge.net> | 2006-04-06 18:19:22 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2006-04-06 18:19:22 (GMT) |
commit | 5236fc67c64ed64fa5b75bc48a4ef5dd2ae44e0f (patch) | |
tree | 8972f9a966520304e7c3505242e7e72873dfdf9d /tests/indexObj.test | |
parent | c1ce8705873d255a95b5b41c4ade4f70afef5422 (diff) | |
download | tcl-5236fc67c64ed64fa5b75bc48a4ef5dd2ae44e0f.zip tcl-5236fc67c64ed64fa5b75bc48a4ef5dd2ae44e0f.tar.gz tcl-5236fc67c64ed64fa5b75bc48a4ef5dd2ae44e0f.tar.bz2 |
* tests/compExpr-old.test: Updated testmathfunctions constraint
* tests/compExpr.test: to post-TIP-232 world.
* tests/expr-old.test:
* tests/expr.test:
* tests/info.test:
* tests/indexObj.test: Corrected other test errors revealed by
* tests/upvar.test: testing outside the tcltest application.
Diffstat (limited to 'tests/indexObj.test')
-rw-r--r-- | tests/indexObj.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/indexObj.test b/tests/indexObj.test index 653275a..bb1c0a4 100644 --- a/tests/indexObj.test +++ b/tests/indexObj.test @@ -8,7 +8,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: indexObj.test,v 1.13 2006/04/05 15:17:39 dgp Exp $ +# RCS: @(#) $Id: indexObj.test,v 1.14 2006/04/06 18:19:25 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -60,7 +60,7 @@ test indexObj-2.4 {ambiguous value} testindexobj { test indexObj-2.5 {omit error message} testindexobj { list [catch {testindexobj 0 1 d x} msg] $msg } {1 {}} -test indexObj-2.6 {TCL_EXACT => no "ambiguous" error message} { +test indexObj-2.6 {TCL_EXACT => no "ambiguous" error message} testindexobj { list [catch {testindexobj 1 0 d dumb daughter a c} msg] $msg } {1 {bad token "d": must be dumb, daughter, a, or c}} test indexObj-2.7 {exact match of empty values} testindexobj { |