diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/clock.test | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/clock.test b/tests/clock.test index a947a42..74a32b4 100644 --- a/tests/clock.test +++ b/tests/clock.test @@ -10,7 +10,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.8 2000/01/13 00:12:33 ericm Exp $ +# RCS: @(#) $Id: clock.test,v 1.9 2000/01/14 22:15:51 ericm Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -221,11 +221,11 @@ test clock-4.24 {clock scan, number:number:number-timezone} { -format {%b %d, %Y %H:%M:%S} -gmt true } "Dec 31, 1999 08:00:30" test clock-4.25 {clock scan, DST for days} { - clock scan "tomorrow" -base 941353200 -} 941443200 + clock scan "tomorrow" -base [clock scan "19991031 00:00:00"] +} [clock scan "19991101 00:00:00"] test clock-4.26 {clock scan, DST for days} { - clock scan "yesterday" -base 941443200 -} 941353200 + clock scan "yesterday" -base [clock scan "19991101 00:00:00"] +} [clock scan "19991031 00:00:00"] test clock-4.27 {clock scan, day} knownBug { clock format [clock scan "Monday" -gmt true -base 946627200] \ -format {%b %d, %Y %H:%M:%S} -gmt true |