Follow-up r90150, another parent::setUp missing.
authorPlatonides <platonides@users.mediawiki.org>
Wed, 15 Jun 2011 21:03:08 +0000 (21:03 +0000)
committerPlatonides <platonides@users.mediawiki.org>
Wed, 15 Jun 2011 21:03:08 +0000 (21:03 +0000)
tests/phpunit/includes/SampleTest.php

index 047bc26..77a371d 100644 (file)
@@ -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' );
        }