[squeak-dev] The Trunk: Nebraska-ul.54.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Dec 30 18:03:46 UTC 2018


Levente Uzonyi uploaded a new version of Nebraska to project The Trunk:
http://source.squeak.org/trunk/Nebraska-ul.54.mcz

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

Name: Nebraska-ul.54
Author: ul
Time: 30 December 2018, 6:25:51.061867 pm
UUID: 3b205aca-b10c-4acd-8ef6-c5cbe7101522
Ancestors: Nebraska-mt.53

- make sure StringSocketTestCase >> #tearDown works even if #setUp fails.

=============== Diff against Nebraska-mt.53 ===============

Item was changed:
  ----- Method: StringSocketTestCase>>tearDown (in category 'running') -----
  tearDown
+ 	
+ 	end1 ifNotNil: [ 
+ 		end1 destroy.
+ 		end1 := nil ].
+ 	end2 ifNotNil: [
+ 		end2 destroy.
+ 		end2 := nil ].
+ 	"StringSocket >> #destroy is expected to destroy the tcp socket. The code below will just ensure that." 
+ 	socket1 ifNotNil: [
+ 		socket1 destroy.
+ 		socket1 := nil ].
+ 	socket2 ifNotNil: [
+ 		socket2 destroy.
+ 		socket2 := nil ]
- 	end1 destroy.
- 	end2 destroy.
  	!



More information about the Squeak-dev mailing list