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 4c622d0 commit 7439a53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ResultPrinter/Report.php
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}

Expand Down

0 comments on commit 7439a53

Please sign in to comment.