From afa65fe50ca9c6ab97b4653fa6459195b1a423b9 Mon Sep 17 00:00:00 2001 From: addshore Date: Thu, 24 Mar 2016 14:51:13 +0000 Subject: [PATCH] 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 --- tests/phpunit/includes/HtmlTest.php | 1 + tests/phpunit/includes/XmlTest.php | 1 + 2 files changed, 2 insertions(+) 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, ] ); } -- 2.20.1