From 843ac173b2c571aff843f49f43a29d505db06e9b Mon Sep 17 00:00:00 2001 From: Alex Monk Date: Sat, 9 Feb 2013 19:10:43 +0000 Subject: [PATCH] Attribtue -> Attribute Change-Id: I9eca55a96be3ae1cdedf5045db40510b918f3549 --- tests/phpunit/includes/HtmlTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/phpunit/includes/HtmlTest.php b/tests/phpunit/includes/HtmlTest.php index 47fa5f4605..32b791e35e 100644 --- a/tests/phpunit/includes/HtmlTest.php +++ b/tests/phpunit/includes/HtmlTest.php @@ -165,22 +165,22 @@ class HtmlTest extends MediaWikiTestCase { $this->assertEquals( ' empty_string=""', Html::expandAttributes( array( 'empty_string' => '' ) ), - 'Attribtue values are always quoted (wgWellFormedXml): Empty string' + 'Attribute values are always quoted (wgWellFormedXml): Empty string' ); $this->assertEquals( ' key="value"', Html::expandAttributes( array( 'key' => 'value' ) ), - 'Attribtue values are always quoted (wgWellFormedXml): Simple string' + 'Attribute values are always quoted (wgWellFormedXml): Simple string' ); $this->assertEquals( ' one="1"', Html::expandAttributes( array( 'one' => 1 ) ), - 'Attribtue values are always quoted (wgWellFormedXml): Number 1' + 'Attribute values are always quoted (wgWellFormedXml): Number 1' ); $this->assertEquals( ' zero="0"', Html::expandAttributes( array( 'zero' => 0 ) ), - 'Attribtue values are always quoted (wgWellFormedXml): Number 0' + 'Attribute values are always quoted (wgWellFormedXml): Number 0' ); } -- 2.20.1