diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2002-10-03 13:34:30 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2002-10-03 13:34:30 (GMT) |
commit | ab7c4df02b91f86fd42936b1c44f131bf042fb3f (patch) | |
tree | 9c39f7a0b3f113c68393d56cb15a4e054d19cd2e /tests/binary.test | |
parent | 28533d82ea038848d80fe995d9a992401a77945f (diff) | |
download | tcl-ab7c4df02b91f86fd42936b1c44f131bf042fb3f.zip tcl-ab7c4df02b91f86fd42936b1c44f131bf042fb3f.tar.gz tcl-ab7c4df02b91f86fd42936b1c44f131bf042fb3f.tar.bz2 |
[info exist]->[info exists]. [Bug 602566]
Diffstat (limited to 'tests/binary.test')
-rw-r--r-- | tests/binary.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/binary.test b/tests/binary.test index b01ae3c..7fd6871 100644 --- a/tests/binary.test +++ b/tests/binary.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: binary.test,v 1.9 2002/02/15 14:28:49 dkf Exp $ +# RCS: @(#) $Id: binary.test,v 1.10 2002/10/03 13:34:32 dkf Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -606,7 +606,7 @@ test binary-20.4 {Tcl_BinaryObjCmd: scan} { } {1 abc} test binary-20.5 {Tcl_BinaryObjCmd: scan} { catch {unset arg1} - list [binary scan abc a5 arg1] [info exist arg1] + list [binary scan abc a5 arg1] [info exists arg1] } {0 0} test binary-20.6 {Tcl_BinaryObjCmd: scan} { set arg1 foo @@ -645,7 +645,7 @@ test binary-21.4 {Tcl_BinaryObjCmd: scan} { } {1 abc} test binary-21.5 {Tcl_BinaryObjCmd: scan} { catch {unset arg1} - list [binary scan abc A5 arg1] [info exist arg1] + list [binary scan abc A5 arg1] [info exists arg1] } {0 0} test binary-21.6 {Tcl_BinaryObjCmd: scan} { set arg1 foo |