summaryrefslogtreecommitdiffstats
path: root/tests/clock.test
diff options
context:
space:
mode:
authorKevin B Kenny <kennykb@acm.org>2007-04-20 04:11:22 (GMT)
committerKevin B Kenny <kennykb@acm.org>2007-04-20 04:11:22 (GMT)
commit97d7bdb53a0311ef3da99b07b875611f1f2e6394 (patch)
treef6ca83e7ddd8c20145974a76559411bafbc4fe94 /tests/clock.test
parent7fd2b33d4eefd8711a3ef349cdd729da6bb7fa42 (diff)
downloadtcl-97d7bdb53a0311ef3da99b07b875611f1f2e6394.zip
tcl-97d7bdb53a0311ef3da99b07b875611f1f2e6394.tar.gz
tcl-97d7bdb53a0311ef3da99b07b875611f1f2e6394.tar.bz2
Fixed a buglet in recognizing time zone SIERRA
Diffstat (limited to 'tests/clock.test')
-rw-r--r--tests/clock.test10
1 files changed, 3 insertions, 7 deletions
diff --git a/tests/clock.test b/tests/clock.test
index 35af1f0..4fe33c7 100644
--- a/tests/clock.test
+++ b/tests/clock.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: clock.test,v 1.77 2007/04/20 03:50:21 kennykb Exp $
+# RCS: @(#) $Id: clock.test,v 1.78 2007/04/20 04:11:22 kennykb Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2
@@ -36541,12 +36541,8 @@ test clock-59.1 {military time zones} {
if {$ms1 != $base + 3600 * $hour} {
lappend trouble [list mzone $mzone ms1 is $ms1]
}
- # S means 'seconds' and therefore isn't parsed as a time zone.
- # Yet another ambiguity in the free-form scanner!
- if {$mzone ne "S"} {
- if {$ms2 != $base + 3600 * $hour} {
- lappend trouble [list mzone $mzone ms2 is $ms2]
- }
+ if {$ms2 != $base + 3600 * $hour} {
+ lappend trouble [list mzone $mzone ms2 is $ms2]
}
incr hour
}