Skip to content

Commit afee8cf

Browse files
committed
FeatureComplete: bug fix - wrong error message displayed in color mode for missing test cases
1 parent 87bad20 commit afee8cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Scripts/CheckSniffCompleteness.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ public function isComplete()
323323
if ($this->showColored === true) {
324324
$docWarning = \str_replace('WARNING', "\033[33mWARNING\033[0m", $docWarning);
325325
$testError = \str_replace('ERROR', "\033[31mERROR\033[0m", $testError);
326-
$testCaseError = \str_replace('ERROR', "\033[31mERROR\033[0m", $testError);
326+
$testCaseError = \str_replace('ERROR', "\033[31mERROR\033[0m", $testCaseError);
327327
}
328328

329329
$notices = [];

0 commit comments

Comments
 (0)