From 53ba32a41a63c21e9f8abdf82c8e2fcbc93e05a0 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Thu, 9 Oct 2008 15:17:59 +0000 Subject: [PATCH] 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 --- dev/CliTestReporter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/CliTestReporter.php b/dev/CliTestReporter.php index 680e25577..1a0729e56 100644 --- a/dev/CliTestReporter.php +++ b/dev/CliTestReporter.php @@ -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"; }