The Inbox: KernelTests-cmm.215.mcz

classic Classic list List threaded Threaded
1 message Options
commits-2 commits-2
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

The Inbox: KernelTests-cmm.215.mcz

A new version of KernelTests was added to project The Inbox:
http://source.squeak.org/inbox/KernelTests-cmm.215.mcz

==================== Summary ====================

Name: KernelTests-cmm.215
Author: cmm
Time: 10 February 2012, 4:56:30.144 pm
UUID: c09dfc81-a3d3-42a7-82c6-30dc5a45102c
Ancestors: KernelTests-cmm.214

Decided against the localized vs. globalized mode.

=============== Diff against KernelTests-cmm.214 ===============

Item was changed:
  ----- Method: DateAndTimeLeapTest>>setUp (in category 'running') -----
  setUp
  localTimeZoneToRestore := DateAndTime localTimeZone.
  DateAndTime localTimeZone: TimeZone default.
  aDateAndTime := (DateAndTime year: 2004 month: 2 day: 29 hour: 13 minute: 33 second: 0 offset: 2 hours).
  aTimeZone := TimeZone default.
+ aDuration := Duration days: 0 hours: 13 minutes: 33 seconds: 0 nanoSeconds: 0
+ !
- aDuration := Duration days: 0 hours: 13 minutes: 33 seconds: 0 nanoSeconds: 0.
- Timespan withAllSubclasses do: [ : each | each localize ]!

Item was changed:
  ----- Method: DateAndTimeLeapTest>>tearDown (in category 'running') -----
  tearDown
+      DateAndTime localTimeZone: localTimeZoneToRestore.
+      "wish I could remove the time zones I added earlier, tut there is no method for that"
+ !
- DateAndTime localTimeZone: localTimeZoneToRestore.
- Timespan withAllSubclassesDo: [ : each | each globalize ]!


Loading...