diff --git a/src/TestWorkers-Worker/TWRunner.class.st b/src/TestWorkers-Worker/TWRunner.class.st index 2b13fdd..2ab52a9 100644 --- a/src/TestWorkers-Worker/TWRunner.class.st +++ b/src/TestWorkers-Worker/TWRunner.class.st @@ -34,7 +34,7 @@ TWRunner >> doExecuteTestCaseMessage: testMessage [ during: [ [ testResults executingContext: thisContext. testMessage buildSuite run: testResults ] - on: Notification do: [ :e | e resume. ] ]. + on: Notification do: [ :e | e pass ] ]. ^ testResults ] @@ -44,7 +44,7 @@ TWRunner >> doRunTestMessage: aTWMessage [ self traceTestMessage: aTWMessage. ^ [ self executionResponseOf: aTWMessage withResult: (self doExecuteTestCaseMessage: aTWMessage) ] - on: Exception + on: Exception - Notification do: [ :anError | self executionErrorResponseOf: aTWMessage withError: anError ] ]