diff --git a/src/ResultPrinter/Report.php b/src/ResultPrinter/Report.php index d1fa865..72f1d5f 100644 --- a/src/ResultPrinter/Report.php +++ b/src/ResultPrinter/Report.php @@ -54,9 +54,9 @@ public function printResult(\PHPUnit\Framework\TestResult $result): void "Successful: %d. Failed: %d. Incomplete: %d. Skipped: %d. Useless: %d", $this->successful, $this->failed, - $this->skipped, $this->incomplete, - $this->risky, + $this->skipped, + $this->risky ) . "\n"); }