summaryrefslogtreecommitdiffstats
path: root/tests/scan.test
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2022-10-27 18:38:55 (GMT)
committerdgp <dgp@users.sourceforge.net>2022-10-27 18:38:55 (GMT)
commitc74a13788aa580ddc5a191f22096fb0a2758d41d (patch)
tree60deefa1ea7a9c1841855a0b16ad9b061c06bcc6 /tests/scan.test
parentd74dc7638ccf0c79a057c87ef0f05b7fd6974588 (diff)
downloadtcl-c74a13788aa580ddc5a191f22096fb0a2758d41d.zip
tcl-c74a13788aa580ddc5a191f22096fb0a2758d41d.tar.gz
tcl-c74a13788aa580ddc5a191f22096fb0a2758d41d.tar.bz2
duplicate test names
Diffstat (limited to 'tests/scan.test')
-rw-r--r--tests/scan.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/scan.test b/tests/scan.test
index c6e7922..03a5b46 100644
--- a/tests/scan.test
+++ b/tests/scan.test
@@ -605,7 +605,7 @@ test scan-6.8 {floating-point scanning} -setup {
} -body {
list [scan "4.6 5.2" "%f %f %f %f" a b c d] $a $b $c $d
} -result {2 4.6 5.2 {} {}}
-test scan-6.8 {disallow diget separator in floating-point} -setup {
+test scan-6.9 {disallow diget separator in floating-point} -setup {
set a {}; set b {}; set c {};
} -body {
list [scan "3.14_2.35_98.6" %f_%f_%f a b c ] $a $b $c