From: Platonides Date: Wed, 15 Jun 2011 21:03:08 +0000 (+0000) Subject: Follow-up r90150, another parent::setUp missing. X-Git-Tag: 1.31.0-rc.0~29511 X-Git-Url: http://git.cyclocoop.org/%22%20%20.%20generer_url_ecrire%28%22mots_tous%22%29%20.%20%22?a=commitdiff_plain;h=f927b699af4745dfab44cb077546aa40a8d4f819;p=lhc%2Fweb%2Fwiklou.git Follow-up r90150, another parent::setUp missing. --- diff --git a/tests/phpunit/includes/SampleTest.php b/tests/phpunit/includes/SampleTest.php index 047bc26a9f..77a371d520 100644 --- a/tests/phpunit/includes/SampleTest.php +++ b/tests/phpunit/includes/SampleTest.php @@ -7,6 +7,8 @@ class TestSample extends MediaWikiLangTestCase { */ function setUp() { global $wgContLang; + parent::setUp(); + /* For example, we need to set $wgContLang for creating a new Title */ $wgContLang = Language::factory( 'en' ); }