From: Ori Livneh Date: Wed, 18 May 2016 19:17:34 +0000 (-0700) Subject: Fix-up for I52c511be04: call parent setup / teardown methods X-Git-Tag: 1.31.0-rc.0~6925 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=78e47bbc54df1d0f4a3e0fd2ef22713cb52012af;p=lhc%2Fweb%2Fwiklou.git Fix-up for I52c511be04: call parent setup / teardown methods Change-Id: Ic66fa5ae61f1d1822d7cc20eafa6c01a2bdb6e37 --- diff --git a/tests/phpunit/includes/debug/MWDebugTest.php b/tests/phpunit/includes/debug/MWDebugTest.php index c1449ea0a4..5c65483150 100644 --- a/tests/phpunit/includes/debug/MWDebugTest.php +++ b/tests/phpunit/includes/debug/MWDebugTest.php @@ -9,11 +9,13 @@ class MWDebugTest extends MediaWikiTestCase { } public static function setUpBeforeClass() { + parent::setUpBeforeClass(); MWDebug::init(); MediaWiki\suppressWarnings(); } public static function tearDownAfterClass() { + parent::tearDownAfterClass(); MWDebug::deinit(); MediaWiki\restoreWarnings(); }