From: addshore Date: Thu, 24 Mar 2016 14:51:13 +0000 (+0000) Subject: wgUseMediaWikiUIEverywhere false in Html/XmlTest X-Git-Tag: 1.31.0-rc.0~7489^2 X-Git-Url: http://git.cyclocoop.org//%27%40script%40/%27?a=commitdiff_plain;h=afa65fe50ca9c6ab97b4653fa6459195b1a423b9;p=lhc%2Fweb%2Fwiklou.git wgUseMediaWikiUIEverywhere false in Html/XmlTest It seems both of these tests assertions all expect this to be false. Ic675e92d8dd8f11fa67914d2ce1dc00a379106ca ended up discovering these issues somehow with these tests suddenly starting to fail. Change-Id: I9d2d3c18d1c9640e2ff04d6fd4296abb86e26877 --- diff --git a/tests/phpunit/includes/HtmlTest.php b/tests/phpunit/includes/HtmlTest.php index 98eb0c5718..6c92b8cb81 100644 --- a/tests/phpunit/includes/HtmlTest.php +++ b/tests/phpunit/includes/HtmlTest.php @@ -8,6 +8,7 @@ class HtmlTest extends MediaWikiTestCase { $this->setMwGlobals( [ 'wgWellFormedXml' => false, + 'wgUseMediaWikiUIEverywhere' => false, ] ); $langObj = Language::factory( 'en' ); diff --git a/tests/phpunit/includes/XmlTest.php b/tests/phpunit/includes/XmlTest.php index 7b82d687a4..00d429e458 100644 --- a/tests/phpunit/includes/XmlTest.php +++ b/tests/phpunit/includes/XmlTest.php @@ -31,6 +31,7 @@ class XmlTest extends MediaWikiTestCase { $this->setMwGlobals( [ 'wgLang' => $langObj, 'wgWellFormedXml' => true, + 'wgUseMediaWikiUIEverywhere' => false, ] ); }