X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=tests%2Fphpunit%2Fincludes%2Fskins%2FSkinTemplateTest.php;h=ff544cd23d484d09f523e56823d635b0db793402;hb=1d277b7c971ccb3857404e2db6131d0e3cf36d18;hp=baa995d4e65315d75ae79720b9224bcfddf8de73;hpb=38d59dd21347dc5167fbef94a0558f6bbdcd4195;p=lhc%2Fweb%2Fwiklou.git diff --git a/tests/phpunit/includes/skins/SkinTemplateTest.php b/tests/phpunit/includes/skins/SkinTemplateTest.php index baa995d4e6..ff544cd23d 100644 --- a/tests/phpunit/includes/skins/SkinTemplateTest.php +++ b/tests/phpunit/includes/skins/SkinTemplateTest.php @@ -5,7 +5,6 @@ * * @group Output * - * @licence GNU GPL v2+ * @author Bene* < benestar.wikimedia@gmail.com > */ @@ -24,20 +23,20 @@ class SkinTemplateTest extends MediaWikiTestCase { } public function makeListItemProvider() { - return array( - array( + return [ + [ '
  • text
  • ', '', - array( + [ 'class' => 'class', 'itemtitle' => 'itemtitle', 'href' => 'url', 'title' => 'title', 'text' => 'text' - ), - array(), - 'Test makteListItem with normal values' - ) - ); + ], + [], + 'Test makeListItem with normal values' + ] + ]; } }