X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=tests%2Fphpunit%2Fincludes%2FXmlJsTest.php;h=29e97eb644bb94acf35f9c9d186e6a6860a3d11f;hb=c6235442b4a8e00ba09396cf278862ae9ae5c225;hp=0dbb01090c8f076c3a58d251ca19f2701dd00cbc;hpb=81c698cc8caf94e03d9457b67e1b4e94d47c7f4f;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 ], + [ '' ], + ]; } }