The Trunk: EToys-topa.122.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: EToys-topa.122.mcz

commits-2
Tobias Pape uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-topa.122.mcz

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

Name: EToys-topa.122
Author: topa
Time: 7 April 2015, 11:31:00.268 am
UUID: c7d71d46-2ce6-481f-874b-57cd91914d23
Ancestors: EToys-topa.121

Style

=============== Diff against EToys-topa.121 ===============

Item was changed:
  ----- Method: TileMorphTest>>expectedFailures (in category 'testing') -----
  expectedFailures
 
  ^ super expectedFailures,
+ (self class environment
+ at: #BaseSoundSystem
+ ifPresent: [#()]
+ ifAbsent: [#(testSoundTile) "Only this test depends on Sound"])!
- ((Smalltalk hasClassNamed: 'BaseSoundSystem')
- ifTrue: [#()]
- ifFalse: [#(testSoundTile) "Only this test depends on Sound"])!

Item was changed:
  ----- Method: TileMorphTest>>setUp (in category 'running') -----
  setUp
 
  self soundSystemBackup: SoundService defaultOrNil.
+ SoundService default: (self class environment at: #BaseSoundSystem ifAbsent: [nil]).!
- SoundService default: (Smalltalk classNamed: 'BaseSoundSystem').!