Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Nov 9, 2006
1 parent 6ea9276 commit ae92d1f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions PHPUnit/TextUI/ResultPrinter.php
Expand Up @@ -218,8 +218,9 @@ protected function printDefectTrace(PHPUnit_Framework_TestFailure $defect)


$string = ''; $string = '';


if ($this->verbose || if ($comparisonFailure !== NULL &&
$comparisonFailure instanceof PHPUnit_Framework_ComparisonFailure_String) { ($this->verbose ||
$comparisonFailure instanceof PHPUnit_Framework_ComparisonFailure_String)) {
$string = $comparisonFailure->toString(); $string = $comparisonFailure->toString();
} }


Expand Down

0 comments on commit ae92d1f

Please sign in to comment.