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

Commit 7439a53

Browse files
committed
Fix order of skipped,incomplete in --report
1 parent 4c622d0 commit 7439a53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ResultPrinter/Report.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ public function printResult(\PHPUnit\Framework\TestResult $result): void
5454
"Successful: %d. Failed: %d. Incomplete: %d. Skipped: %d. Useless: %d",
5555
$this->successful,
5656
$this->failed,
57-
$this->skipped,
5857
$this->incomplete,
59-
$this->risky,
58+
$this->skipped,
59+
$this->risky
6060
) . "\n");
6161
}
6262

0 commit comments

Comments
 (0)