SkinTemplateTest typofix
[lhc/web/wiklou.git] / tests / phpunit / includes / skins / SkinTemplateTest.php
index 8084a66..ff544cd 100644 (file)
@@ -23,20 +23,20 @@ class SkinTemplateTest extends MediaWikiTestCase {
        }
 
        public function makeListItemProvider() {
-               return array(
-                       array(
+               return [
+                       [
                                '<li class="class" title="itemtitle"><a href="url" title="title">text</a></li>',
                                '',
-                               array(
+                               [
                                        'class' => 'class',
                                        'itemtitle' => 'itemtitle',
                                        'href' => 'url',
                                        'title' => 'title',
                                        'text' => 'text'
-                               ),
-                               array(),
-                               'Test makteListItem with normal values'
-                       )
-               );
+                               ],
+                               [],
+                               'Test makeListItem with normal values'
+                       ]
+               ];
        }
 }