diff options
author | dgp <dgp@users.sourceforge.net> | 2004-05-19 20:03:46 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-05-19 20:03:46 (GMT) |
commit | cc56afda247802cb646330c25f3f03db20b1a43d (patch) | |
tree | a58be8eacd6f26983fed6065248de71c0164df08 /tests/binary.test | |
parent | f862c606dc4ecda51a521b2ec46c7c308500af38 (diff) | |
download | tcl-cc56afda247802cb646330c25f3f03db20b1a43d.zip tcl-cc56afda247802cb646330c25f3f03db20b1a43d.tar.gz tcl-cc56afda247802cb646330c25f3f03db20b1a43d.tar.bz2 |
corrected test name duplication
Diffstat (limited to 'tests/binary.test')
-rw-r--r-- | tests/binary.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/binary.test b/tests/binary.test index 9cd63b8..2df6244 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.15 2004/05/13 10:12:56 dkf Exp $ +# RCS: @(#) $Id: binary.test,v 1.16 2004/05/19 20:03:46 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -1572,7 +1572,7 @@ test binary-48.18 {Tcl_BinaryObjCmd: format} bigEndian { set a {0x50 0x51} binary format t1 $a } \x00P -test binary-48.18 {Tcl_BinaryObjCmd: format} littleEndian { +test binary-48.19 {Tcl_BinaryObjCmd: format} littleEndian { set a {0x50 0x51} binary format t1 $a } P\x00 |