tests: always call parent setUp
[lhc/web/wiklou.git] / tests / phpunit / includes / db / DatabaseTest.php
index a8a6b48..cbbdc1f 100644 (file)
@@ -8,10 +8,12 @@ class DatabaseTest extends MediaWikiTestCase {
        var $db, $functionTest = false;
 
        protected function setUp() {
+               parent::setUp();
                $this->db = wfGetDB( DB_MASTER );
        }
 
        protected function tearDown() {
+               parent::tearDown();
                if ( $this->functionTest ) {
                        $this->dropFunctions();
                        $this->functionTest = false;