Index: trunk/phase3/tests/phpunit/includes/parser/MagicVariableTest.php |
— | — | @@ -38,8 +38,12 @@ |
39 | 39 | |
40 | 40 | # initialize parser output |
41 | 41 | $this->testParser->clearState(); |
| 42 | + |
42 | 43 | # Needs a title to do magic word stuff |
43 | | - $this->testParser->setTitle( Title::newFromText( 'Tests' ) ); |
| 44 | + $title = Title::newFromText( 'Tests' ); |
| 45 | + $title->mRedirect = false; # Else it needs a db connection just to check if it's a redirect (when deciding the page language) |
| 46 | + |
| 47 | + $this->testParser->setTitle( $title ); |
44 | 48 | } |
45 | 49 | |
46 | 50 | /** destroy parser (TODO: is it really neded?)*/ |