summaryrefslogtreecommitdiff
path: root/modules/simpletest/reporter.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/simpletest/reporter.php')
-rw-r--r--modules/simpletest/reporter.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/simpletest/reporter.php b/modules/simpletest/reporter.php
index e0487a243..5c63e5d43 100644
--- a/modules/simpletest/reporter.php
+++ b/modules/simpletest/reporter.php
@@ -210,9 +210,9 @@ class TextReporter extends SimpleReporter {
print "OK\n";
}
else {
- print "FAILURES!!!\n";
+ print "FAILURES\n";
}
- print "Test cases run: ". $this->getTestCaseProgress() ."/". $this->getTestCaseCount() .", Passes: ". $this->getPassCount() .", Failures: ". $this->getFailCount() .", Exceptions: ". $this->getExceptionCount() ."\n";
+ print "Test cases run: ". $this->getTestCaseProgress() ."/". $this->getTestCaseCount() .", passes: ". $this->getPassCount() .", failures: ". $this->getFailCount() .", exceptions: ". $this->getExceptionCount() ."\n";
}
/**