diff options
author | Dominik Eckelmann <deckelmann@gmail.com> | 2012-11-29 14:59:46 +0100 |
---|---|---|
committer | Dominik Eckelmann <deckelmann@gmail.com> | 2012-11-29 14:59:46 +0100 |
commit | ff576d9309a9a8c229caea79f2f8509cc986eee4 (patch) | |
tree | ca1f6174af12d0e3cac894df10bcf5d35af35eba /_test/tests/inc/parser/parser.inc.php | |
parent | 3f6c460c29cccb4fdbbbbd14afbdd29916947221 (diff) | |
download | rpg-ff576d9309a9a8c229caea79f2f8509cc986eee4.tar.gz rpg-ff576d9309a9a8c229caea79f2f8509cc986eee4.tar.bz2 |
use correct setUp method and parent calls.
Diffstat (limited to '_test/tests/inc/parser/parser.inc.php')
-rw-r--r-- | _test/tests/inc/parser/parser.inc.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/_test/tests/inc/parser/parser.inc.php b/_test/tests/inc/parser/parser.inc.php index e9efef0d3..61f15678b 100644 --- a/_test/tests/inc/parser/parser.inc.php +++ b/_test/tests/inc/parser/parser.inc.php @@ -8,7 +8,8 @@ abstract class TestOfDoku_Parser extends PHPUnit_Framework_TestCase { var $P; var $H; - function setup() { + function setUp() { + parent::setUp(); $this->P = new Doku_Parser(); $this->H = new Doku_Handler(); $this->P->Handler = & $this->H; |