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

Commit 6a62443

Browse files
authored
Merge pull request #31 from maestroprog/fix/describe-as-string
Fix warning "Array to string conversion"
2 parents 374dd62 + 590ffd8 commit 6a62443

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/phpunit5-loggers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ protected function writeNotOk(\PHPUnit\Framework\Test $test, $prefix = '', $dire
560560
"not ok %d - %s%s%s\n",
561561
$this->testNumber,
562562
$prefix != '' ? $prefix . ': ' : '',
563-
\PHPUnit\Util\Test::describe($test),
563+
\PHPUnit\Util\Test::describeAsString($test),
564564
$directive != '' ? ' # ' . $directive : ''
565565
)
566566
);

0 commit comments

Comments
 (0)