Skip to content

Commit ce545d2

Browse files
Fix whitespace.
1 parent 26d57b4 commit ce545d2

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

PHPUnit/TextUI/ResultPrinter.php

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -275,16 +275,17 @@ protected function printDefectTrace(PHPUnit_Framework_TestFailure $defect)
275275
)
276276
);
277277

278-
$e = $defect->thrownException()->getPrevious();
278+
$e = $defect->thrownException()->getPrevious();
279+
279280
while ($e) {
280-
$this->write(
281-
"\nCaused by\n" .
282-
PHPUnit_Framework_TestFailure::exceptionToString($e). "\n" .
283-
PHPUnit_Util_Filter::getFilteredStacktrace($e)
284-
);
285-
$e = $e->getPrevious();
286-
}
287-
281+
$this->write(
282+
"\nCaused by\n" .
283+
PHPUnit_Framework_TestFailure::exceptionToString($e). "\n" .
284+
PHPUnit_Util_Filter::getFilteredStacktrace($e)
285+
);
286+
287+
$e = $e->getPrevious();
288+
}
288289
}
289290

290291
/**

0 commit comments

Comments
 (0)