MINOR Syntax fix in CliTestReporter which was causing wrong array indices

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@64008 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2008-10-09 15:17:59 +00:00
parent 18855687fc
commit 53ba32a41a

View File

@ -69,7 +69,7 @@ class CliTestReporter extends SapphireTestReporter {
}
echo "\n\n" . SSCli::text($this->testNameToPhrase($test['name']) . "\n". $test['message'] . "\n", 'red', null, true);
echo SSCli::text("In line {$test['exception']['line']} of {$test['exception']['file']}" . "\n\n", 'red ');
echo SSCli::text("In line {$test['exception']['line']} of {$test['exception']['file']}" . "\n\n", 'red');
echo Debug::get_rendered_backtrace($filteredTrace, true);
echo "\n--------------------\n";
}