diff options
Diffstat (limited to 'tests/string.test')
-rw-r--r-- | tests/string.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/string.test b/tests/string.test index 5200b48..6a0bdfd 100644 --- a/tests/string.test +++ b/tests/string.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: string.test,v 1.13 1999/06/10 04:28:52 stanton Exp $ +# RCS: @(#) $Id: string.test,v 1.14 1999/06/24 03:27:57 stanton Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { source [file join [pwd] [file dirname [info script]] defs.tcl] @@ -517,8 +517,8 @@ test string-6.87 {string is print} { } {0 13} test string-6.88 {string is punct} { ## any graph char that isn't alnum - list [string is punct -fail var "_=!@#\$\u00beq0"] $var -} {0 7} + list [string is punct -fail var "_!@#\u00beq0"] $var +} {0 4} test string-6.89 {string is xdigit} { list [string is xdigit -fail var 0123456789\u0061bcdefABCDEFg] $var } {0 22} |