summaryrefslogtreecommitdiffstats
path: root/tests/string.test
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2011-05-06 07:55:07 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2011-05-06 07:55:07 (GMT)
commit40cda0332e1b2f519820ae88d305adc55ff14ab8 (patch)
tree319326c5483d5926709f10281df2cbdeb101549a /tests/string.test
parent5febd664fb553465a0b845f477cb3fde895d2a5e (diff)
parent05254ef80b53bb81151e5bedb75e686b63dc477a (diff)
downloadtcl-40cda0332e1b2f519820ae88d305adc55ff14ab8.zip
tcl-40cda0332e1b2f519820ae88d305adc55ff14ab8.tar.gz
tcl-40cda0332e1b2f519820ae88d305adc55ff14ab8.tar.bz2
comment fix
Diffstat (limited to 'tests/string.test')
-rw-r--r--tests/string.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/string.test b/tests/string.test
index a3bac61..1a62a66 100644
--- a/tests/string.test
+++ b/tests/string.test
@@ -602,18 +602,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