summaryrefslogtreecommitdiff
path: root/modules/simpletest/reporter.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-06-08 19:50:54 +0000
committerDries Buytaert <dries@buytaert.net>2008-06-08 19:50:54 +0000
commit76aedbefe05d9f5b8aad9573635a07045efa392a (patch)
treecb2c8ac6e18a1d7abd3eee4d799db9643ce44466 /modules/simpletest/reporter.php
parentcaa2e7e1d1d72bfc2873339206b885e9f8a7b788 (diff)
downloadbrdo-76aedbefe05d9f5b8aad9573635a07045efa392a.tar.gz
brdo-76aedbefe05d9f5b8aad9573635a07045efa392a.tar.bz2
- Patch #267813 by alpritt: fixed some user module tests.
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";
}
/**