@@ -197,7 +197,7 @@ |
||
| 197 | 197 | $passed = true; |
| 198 | 198 | foreach($jobs as $job) { |
| 199 | 199 | $output .= $this->runJob($job); |
| 200 | - if($job->result === "failed") { |
|
| 200 | + if($job->result === "failed") { |
|
| 201 | 201 | $passed = false; |
| 202 | 202 | } |
| 203 | 203 | } |
@@ -45,10 +45,10 @@ |
||
| 45 | 45 | static::printLine($output . ". $text"); |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | - /** |
|
| 49 | - * @param string $results |
|
| 50 | - * @return bool |
|
| 51 | - */ |
|
| 48 | + /** |
|
| 49 | + * @param string $results |
|
| 50 | + * @return bool |
|
| 51 | + */ |
|
| 52 | 52 | public static function checkFailed(string $results): bool { |
| 53 | 53 | $testsFailed = substr_count($results, " failed. "); |
| 54 | 54 | return (bool) $testsFailed; |