diff options
Diffstat (limited to '_test/cases/inc/parser/parser.inc.php')
-rw-r--r-- | _test/cases/inc/parser/parser.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_test/cases/inc/parser/parser.inc.php b/_test/cases/inc/parser/parser.inc.php index 22574d579..74d956f43 100644 --- a/_test/cases/inc/parser/parser.inc.php +++ b/_test/cases/inc/parser/parser.inc.php @@ -33,8 +33,8 @@ class TestOfDoku_Parser extends UnitTestCase { } function setup() { - $this->P = & new Doku_Parser(); - $this->H = & new Doku_Handler(); + $this->P = new Doku_Parser(); + $this->H = new Doku_Handler(); $this->P->Handler = & $this->H; } |