diff options
-rw-r--r-- | _test/lib/cli_reporter.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/_test/lib/cli_reporter.php b/_test/lib/cli_reporter.php index e83911c73..3ad88119d 100644 --- a/_test/lib/cli_reporter.php +++ b/_test/lib/cli_reporter.php @@ -62,6 +62,14 @@ class CLIReporter extends SimpleReporter { } /** + * reset failinfo + */ + function paintPass($message) { + parent::paintPass($message); + $this->_failinfo = ''; + } + + /** * Paint exception faildetail to STDERR. */ function paintException($message) { |