diff options
author | Andreas Gohr <andi@splitbrain.org> | 2010-10-03 13:13:24 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2010-10-03 13:13:24 +0200 |
commit | cf1b22acfe590acea76aa3f0bd4421515d3d04d9 (patch) | |
tree | 018f8c7a2a3301456c72beb966fd4a85a0d99a02 /_test | |
parent | 2237b4fa4c84beb06a92308a19e45027e2bdc131 (diff) | |
download | rpg-cf1b22acfe590acea76aa3f0bd4421515d3d04d9.tar.gz rpg-cf1b22acfe590acea76aa3f0bd4421515d3d04d9.tar.bz2 |
reset failinfo on next test case
Diffstat (limited to '_test')
-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) { |