Skip to content

Commit

Permalink
Fix order of skipped,incomplete in --report
Browse files Browse the repository at this point in the history
  • Loading branch information
Naktibalda committed May 23, 2022
1 parent 0eeff2c commit 7d3479b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ResultPrinter/Report.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ public function printResult(\PHPUnit\Framework\TestResult $result)
"Successful: %d. Failed: %d. Incomplete: %d. Skipped: %d. Useless: %d",
$this->successful,
$this->failed,
$this->skipped,
$this->incomplete,
$this->skipped,
$this->risky
) . "\n");
}
Expand Down

0 comments on commit 7d3479b

Please sign in to comment.