Marcel Taeumel uploaded a new version of Chronology-Tests to project The Trunk:
http://source.squeak.org/trunk/Chronology-Tests-mt.23.mcz==================== Summary ====================
Name: Chronology-Tests-mt.23
Author: mt
Time: 5 March 2020, 1:27:48.760611 pm
UUID: 7572e6e2-46e3-e34e-ae5e-f807677b2963
Ancestors: Chronology-Tests-cmm.22
Removes reference to deprecated message. All Chronology tests pass.
=============== Diff against Chronology-Tests-cmm.22 ===============
Item was changed:
----- Method: TimeTest>>selectorsToBeIgnored (in category 'Coverage') -----
selectorsToBeIgnored
| deprecated private special primitives timing benchmarks |
deprecated := #().
private := #( #print24:on: #print24:showSeconds:on: ).
special := #( #< #= #new #printOn: #storeOn: ).
+ primitives := #().
- primitives := #( #primMillisecondClock #primSecondsClock ).
timing := #( #millisecondClockValue #milliseconds:since: #millisecondsSince: ).
benchmarks := #( #benchmarkMillisecondClock #benchmarkPrimitiveResponseDelay ).
^ super selectorsToBeIgnored, deprecated, private, special, primitives, timing, benchmarks.!