Skip to content
This repository was archived by the owner on Mar 12, 2025. It is now read-only.

Commit dd44fc1

Browse files
authoredMay 23, 2022
Fix order of skipped,incomplete in --report
1 parent 9ee8225 commit dd44fc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/ResultPrinter/Report.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ public function printResult(\PHPUnit\Framework\TestResult $result)
5454
"Successful: %d. Failed: %d. Incomplete: %d. Skipped: %d. Useless: %d",
5555
$this->successful,
5656
$this->failed,
57-
$this->skipped,
5857
$this->incomplete,
58+
$this->skipped,
5959
$this->risky
6060
) . "\n");
6161
}

0 commit comments

Comments
 (0)