diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-06-08 19:50:54 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-06-08 19:50:54 +0000 |
commit | 76aedbefe05d9f5b8aad9573635a07045efa392a (patch) | |
tree | cb2c8ac6e18a1d7abd3eee4d799db9643ce44466 /modules/simpletest/reporter.php | |
parent | caa2e7e1d1d72bfc2873339206b885e9f8a7b788 (diff) | |
download | brdo-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.php | 4 |
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"; } /** |