tests: always call parent setUp
[lhc/web/wiklou.git] / tests / phpunit / includes / WikitextContentHandlerTest.php
index 8aeb529..8db96d1 100644 (file)
@@ -11,12 +11,10 @@ class WikitextContentHandlerTest extends MediaWikiTestCase {
        var $handler;
 
        public function setup() {
+               parent::setUp();
                $this->handler = ContentHandler::getForModelID( CONTENT_MODEL_WIKITEXT );
        }
 
-       public function teardown() {
-       }
-
        public function testSerializeContent( ) {
                $content = new WikitextContent( 'hello world' );