mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Making exception class names visible in the WebTest runner. Fixes #1506
This commit is contained in:
parent
63308fdbd8
commit
7b34d879dc
1 changed files with 1 additions and 1 deletions
|
@ -271,7 +271,7 @@ class CakeHtmlReporter extends CakeBaseReporter {
|
|||
$testName = get_class($test) . '(' . $test->getName() . ')';
|
||||
|
||||
echo "<li class='fail'>\n";
|
||||
echo "<span>Exception</span>";
|
||||
echo "<span>" . get_class($message) . "</span>";
|
||||
|
||||
echo "<div class='msg'>" . $this->_htmlEntities($message->getMessage()) . "</div>\n";
|
||||
echo "<div class='msg'>" . __('Test case: %s', $testName) . "</div>\n";
|
||||
|
|
Loading…
Reference in a new issue