[squeak-dev] The Inbox: Tests-jar.462.mcz

commits at source.squeak.org commits at source.squeak.org
Mon May 3 10:03:43 UTC 2021


A new version of Tests was added to project The Inbox:
http://source.squeak.org/inbox/Tests-jar.462.mcz

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

Name: Tests-jar.462
Author: jar
Time: 3 May 2021, 12:03:40.642808 pm
UUID: b9dfb879-cfe4-ea46-96c4-fa620bd984c8
Ancestors: Tests-jar.461

Fix indentation of #doubleOuterResignalAsTest. I hope it's right this time :)

=============== Diff against Tests-jar.461 ===============

Item was changed:
  ----- Method: ExceptionTester>>doubleOuterResignalAsTest (in category 'tests') -----
  doubleOuterResignalAsTest
  	"ExceptionTester new doubleOuterResignalAsTest"
  
  	[[self doSomething.
  	MyResumableTestError signal.
  	self doYetAnotherThing]
  		on: MyResumableTestError
+ 		do: [:ex | ex outer. self doSomethingExceptional]. 
+ 	self doSomethingElse]
+ 		on: MyResumableTestError
+ 		do: [:ex | ex resignalAs: MyTestNotification]
- 		do: [:ex | ex outer. self doSomethingExceptional]. self doSomethingElse]
- 			on: MyResumableTestError
- 			do: [:ex | ex resignalAs: MyTestNotification]
  !



More information about the Squeak-dev mailing list