X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=tests%2Fphpunit%2Fincludes%2FXmlJsTest.php;h=29e97eb644bb94acf35f9c9d186e6a6860a3d11f;hb=4d25a92de0ab4ec40ba7a145527b69cf2b27effa;hp=0dbb01090c8f076c3a58d251ca19f2701dd00cbc;hpb=7319c450f3a3f560ed73feab60bd3323b1e02f46;p=lhc%2Fweb%2Fwiklou.git diff --git a/tests/phpunit/includes/XmlJsTest.php b/tests/phpunit/includes/XmlJsTest.php index 0dbb01090c..29e97eb644 100644 --- a/tests/phpunit/includes/XmlJsTest.php +++ b/tests/phpunit/includes/XmlJsTest.php @@ -3,7 +3,7 @@ /** * @group Xml */ -class XmlJs extends MediaWikiTestCase { +class XmlJs extends PHPUnit_Framework_TestCase { /** * @covers XmlJsCode::__construct @@ -15,10 +15,10 @@ class XmlJs extends MediaWikiTestCase { } public static function provideConstruction() { - return array( - array( null ), - array( '' ), - ); + return [ + [ null ], + [ '' ], + ]; } }