From 7439a53ae367986e9c22b2ac00f9d7376bb2f8cf Mon Sep 17 00:00:00 2001 From: Gintautas Miselis Date: Mon, 23 May 2022 09:09:22 +0300 Subject: [PATCH] Fix order of skipped,incomplete in --report --- src/ResultPrinter/Report.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"); }