Nicolas Cellier uploaded a new version of Tests to project The Trunk:
http://source.squeak.org/trunk/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]
!