diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-05-06 07:53:17 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-05-06 07:53:17 (GMT) |
commit | c59119a17a72e69b6f2d269226e6c7f0d5eb7a62 (patch) | |
tree | 0cceb32e49fae96960404d187272dfdf0f1db1ee /tests | |
parent | f0715a0f0003937141d792aa38d43956f9d4f568 (diff) | |
download | tcl-c59119a17a72e69b6f2d269226e6c7f0d5eb7a62.zip tcl-c59119a17a72e69b6f2d269226e6c7f0d5eb7a62.tar.gz tcl-c59119a17a72e69b6f2d269226e6c7f0d5eb7a62.tar.bz2 |
comment fix
Diffstat (limited to 'tests')
-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 0ec65ff..555e5ce 100644 --- a/tests/string.test +++ b/tests/string.test @@ -598,18 +598,18 @@ test string-6.91 {string is double, bad doubles} { } set result } {1 1 0 0 0 1 0 0} -test string-6.92 {string is double, 32-bit overflow} { +test string-6.92 {string is integer, 32-bit overflow} { # Bug 718878 set x 0x100000000 list [string is integer -failindex var $x] $var } {0 -1} -test string-6.93 {string is double, 32-bit overflow} { +test string-6.93 {string is integer, 32-bit overflow} { # Bug 718878 set x 0x100000000 append x "" list [string is integer -failindex var $x] $var } {0 -1} -test string-6.94 {string is double, 32-bit overflow} { +test string-6.94 {string is integer, 32-bit overflow} { # Bug 718878 set x 0x100000000 list [string is integer -failindex var [expr {$x}]] $var |