Skip to content

Commit

Permalink
Remove FAIL message color highlighting (#6754)
Browse files Browse the repository at this point in the history
  • Loading branch information
antonvolokha committed May 16, 2024
1 parent e4ed457 commit 0297b0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Codeception/Reporter/ReportPrinter.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function testError(FailEvent $event): void

public function testFailure(FailEvent $event): void
{
$this->printTestResult($event->getTest(), "\033[41;37mFAIL\033[0m");
$this->printTestResult($event->getTest(), "FAIL");
$this->failureCount++;
}

Expand Down

0 comments on commit 0297b0b

Please sign in to comment.