From: umherirrender Date: Tue, 9 Feb 2016 21:00:38 +0000 (+0100) Subject: Fix case of Html class in HtmlTest comments X-Git-Tag: 1.31.0-rc.0~8025^2 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=8e76bdf98f2e81089cdb761689d7571e0fffbd32;p=lhc%2Fweb%2Fwiklou.git Fix case of Html class in HtmlTest comments Change-Id: I92eace17e643b3a40b38c077e9dcb3d60a7f5faf --- diff --git a/tests/phpunit/includes/HtmlTest.php b/tests/phpunit/includes/HtmlTest.php index 830a7be2fd..a4ef950b22 100644 --- a/tests/phpunit/includes/HtmlTest.php +++ b/tests/phpunit/includes/HtmlTest.php @@ -99,7 +99,7 @@ class HtmlTest extends MediaWikiTestCase { } /** - * @covers HTML::expandAttributes + * @covers Html::expandAttributes */ public function testExpandAttributesSkipsNullAndFalse() { @@ -120,7 +120,7 @@ class HtmlTest extends MediaWikiTestCase { } /** - * @covers HTML::expandAttributes + * @covers Html::expandAttributes */ public function testExpandAttributesForBooleans() { $this->assertEquals( @@ -155,7 +155,7 @@ class HtmlTest extends MediaWikiTestCase { } /** - * @covers HTML::expandAttributes + * @covers Html::expandAttributes */ public function testExpandAttributesForNumbers() { $this->assertEquals( @@ -171,7 +171,7 @@ class HtmlTest extends MediaWikiTestCase { } /** - * @covers HTML::expandAttributes + * @covers Html::expandAttributes */ public function testExpandAttributesForObjects() { $this->assertEquals( @@ -481,7 +481,7 @@ class HtmlTest extends MediaWikiTestCase { $this->assertEquals( '', Html::element( 'input', array( 'type' => $HTML5InputType ) ), - 'In HTML5, HTML::element() should accept type="' . $HTML5InputType . '"' + 'In HTML5, Html::element() should accept type="' . $HTML5InputType . '"' ); }