Merge "API: Warn when unsupported PHP array syntax is used"
[lhc/web/wiklou.git] / tests / phpunit / includes / HtmlTest.php
index f112a00..e934965 100644 (file)
@@ -652,14 +652,16 @@ class HtmlTest extends MediaWikiTestCase {
                );
                $this->assertEquals(
                        ' step=any',
-                       Html::expandAttributes( array(
-                               'min' => 1,
-                               'max' => 100,
-                               'pattern' => 'abc',
-                               'required' => true,
-                               'step' => 'any'
-                       ) ,
-                       'Allow special case "step=any".'
-               ) );
+                       Html::expandAttributes(
+                               array(
+                                       'min' => 1,
+                                       'max' => 100,
+                                       'pattern' => 'abc',
+                                       'required' => true,
+                                       'step' => 'any'
+                               ),
+                               'Allow special case "step=any".'
+                       )
+               );
        }
 }