From f927b699af4745dfab44cb077546aa40a8d4f819 Mon Sep 17 00:00:00 2001 From: Platonides Date: Wed, 15 Jun 2011 21:03:08 +0000 Subject: [PATCH] Follow-up r90150, another parent::setUp missing. --- tests/phpunit/includes/SampleTest.php | 2 ++ 1 file changed, 2 insertions(+) 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' ); } -- 2.20.1