aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit/includes/xml/XmlTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/phpunit/includes/xml/XmlTest.php')
-rw-r--r--tests/phpunit/includes/xml/XmlTest.php16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/phpunit/includes/xml/XmlTest.php b/tests/phpunit/includes/xml/XmlTest.php
index 3ef708ad9f62..ebb53b4e1fe1 100644
--- a/tests/phpunit/includes/xml/XmlTest.php
+++ b/tests/phpunit/includes/xml/XmlTest.php
@@ -15,7 +15,6 @@ class XmlTest extends MediaWikiIntegrationTestCase {
$this->overrideConfigValues( [
MainConfigNames::LanguageCode => 'en',
- MainConfigNames::UseMediaWikiUIEverywhere => false,
] );
$langObj = $this->getServiceContainer()->getLanguageFactory()->getLanguage( 'en' );
@@ -77,21 +76,6 @@ class XmlTest extends MediaWikiIntegrationTestCase {
);
}
- /**
- * @covers Xml::input
- * @covers \MediaWiki\Html\Html::getTextInputAttributes
- */
- public function testInputWithMWUIEverywhere() {
- $this->overrideConfigValues( [
- MainConfigNames::UseMediaWikiUIEverywhere => true,
- ] );
-
- $this->assertSame(
- '<input name="name" class="foo mw-ui-input" />',
- Xml::input( 'name', false, false, [ 'class' => 'foo' ] )
- );
- }
-
public function testOpenElement() {
$this->assertEquals(
'<element k="v">',