The Trunk: Tests-ul.39.mcz

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

The Trunk: Tests-ul.39.mcz

commits-2
Levente Uzonyi uploaded a new version of Tests to project The Trunk:
http://source.squeak.org/trunk/Tests-ul.39.mcz

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

Name: Tests-ul.39
Author: ul
Time: 12 December 2009, 2:51:15 am
UUID: fdbd907d-c421-b841-bc0c-dc01ab1764b8
Ancestors: Tests-bf.38

- replace sends of #ifNotNilDo: to #ifNotNil:, #ifNil:ifNotNilDo: to #ifNil:ifNotNil:, #ifNotNilDo:ifNil: to #ifNotNil:ifNil:

=============== Diff against Tests-bf.38 ===============

Item was changed:
  ----- Method: ChangeSetClassChangesTest>>tearDown (in category 'running') -----
  tearDown
 
+ (Smalltalk classNamed: #JunkClass) ifNotNil: [:c | c removeFromSystem: true].
- (Smalltalk classNamed: #JunkClass) ifNotNilDo: [:c | c removeFromSystem: true].
  SystemOrganization removeCategory: #'DeleteMe-1'.
  SystemOrganization removeCategory: #'DeleteMe-2'.
  ChangeSet current removeClassChanges: 'JunkClass'
 
  !