mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
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:
parent
18855687fc
commit
53ba32a41a
@ -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";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user