Skip to content

Commit 0b947ba

Browse files
committed
OutputHandler: always mark tests as finished irregardless of their result (closes #22)
1 parent 31b8d3f commit 0b947ba

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

resources/setup.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,9 @@ public function result($testName, $result, $message)
6565
), $extraArguments);
6666

6767
\fwrite($this->file, $this->message('testFailed', $args));
68-
69-
} else {
70-
\fwrite($this->file, $this->message('testFinished', array('name' => $testName, 'flowId' => $flowId)));
7168
}
69+
70+
\fwrite($this->file, $this->message('testFinished', array('name' => $testName, 'flowId' => $flowId)));
7271
}
7372

7473

0 commit comments

Comments
 (0)