From bd5fff091c1aabceefaa2c46fb467dacc73c37ed Mon Sep 17 00:00:00 2001 From: Platonides Date: Thu, 6 Dec 2012 17:22:18 +0100 Subject: [PATCH] Add the required call to the parent setUp to DiffHistoryBlobTest::setUp() Change-Id: I598064cc7690f8dcc2fc5ef7a5d7c75935566d26 DiffHistoryBlobTest::testMediaWikiTestCaseParentSetupCalled DiffHistoryBlobTest::setUp() must call parent::setUp() --- tests/phpunit/includes/DiffHistoryBlobTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/phpunit/includes/DiffHistoryBlobTest.php b/tests/phpunit/includes/DiffHistoryBlobTest.php index d46e683e1a..361b4124d8 100644 --- a/tests/phpunit/includes/DiffHistoryBlobTest.php +++ b/tests/phpunit/includes/DiffHistoryBlobTest.php @@ -14,6 +14,7 @@ class DiffHistoryBlobTest extends MediaWikiTestCase { $this->markTestSkipped( 'Neither the hash nor mhash extension is available' ); return; } + parent::setUp(); } /** -- 2.20.1