From 78e47bbc54df1d0f4a3e0fd2ef22713cb52012af Mon Sep 17 00:00:00 2001 From: Ori Livneh Date: Wed, 18 May 2016 12:17:34 -0700 Subject: [PATCH] Fix-up for I52c511be04: call parent setup / teardown methods Change-Id: Ic66fa5ae61f1d1822d7cc20eafa6c01a2bdb6e37 --- tests/phpunit/includes/debug/MWDebugTest.php | 2 ++ 1 file changed, 2 insertions(+) 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(); } -- 2.20.1