From 593fa99ce4e21bd102cbb5c3ed604e953db4b47d Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Thu, 14 Oct 2010 22:51:37 +0000 Subject: [PATCH] MINOR Removed "In line of " text in CLI test reporter which did not work. Details are in the backtrace below anyway, so it's not required git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@112321 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- dev/CliTestReporter.php | 1 - 1 file changed, 1 deletion(-) diff --git a/dev/CliTestReporter.php b/dev/CliTestReporter.php index bd8b502db..3d8432c48 100644 --- a/dev/CliTestReporter.php +++ b/dev/CliTestReporter.php @@ -90,7 +90,6 @@ class CliTestReporter extends SapphireTestReporter { } echo "\n\n" . SS_Cli::text($this->testNameToPhrase($test['name']) . "\n". $test['message'] . "\n", 'red', null, true); - echo SS_Cli::text("In line {$test['exception']['line']} of {$test['exception']['file']}" . "\n\n", 'red'); echo SS_Backtrace::get_rendered_backtrace($filteredTrace, true); echo "\n--------------------\n"; }