From 93f452cde1a81f7501dc62bb1a6d5021368278ce Mon Sep 17 00:00:00 2001 From: jackbravo Date: Wed, 5 Sep 2007 19:02:41 +0000 Subject: [PATCH] Separate correctly test messages when running from the browser, and get the variables through _GET --- tests/run.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/run.php b/tests/run.php index 46c4bf996..97c55cf6a 100644 --- a/tests/run.php +++ b/tests/run.php @@ -375,7 +375,7 @@ class MyReporter extends HtmlReporter { print '
';
         foreach ($this->_test->getMessages() as $message) {
-            print $message;
+            print "

$message

"; } print '
'; $colour = ($this->_test->getFailCount() > 0 ? 'red' : 'green'); @@ -394,13 +394,14 @@ class MyReporter extends HtmlReporter {