X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=tests%2Fphpunit%2Fincludes%2FDiffHistoryBlobTest.php;h=b75862ea0c9a53a9769fd03d9aa47b1f6dde2970;hb=26e157d31135fd4c74a7e0544722a69face4d6df;hp=786e05d31c9dd8ace706c30a5376e0a1f589518d;hpb=e02252879ee44579f3fafae4cbc1147e74e6a372;p=lhc%2Fweb%2Fwiklou.git diff --git a/tests/phpunit/includes/DiffHistoryBlobTest.php b/tests/phpunit/includes/DiffHistoryBlobTest.php index 786e05d31c..b75862ea0c 100644 --- a/tests/phpunit/includes/DiffHistoryBlobTest.php +++ b/tests/phpunit/includes/DiffHistoryBlobTest.php @@ -15,7 +15,6 @@ class DiffHistoryBlobTest extends MediaWikiTestCase { } /** - * Test for DiffHistoryBlob::xdiffAdler32() * @dataProvider provideXdiffAdler32 * @covers DiffHistoryBlob::xdiffAdler32 */ @@ -31,15 +30,15 @@ class DiffHistoryBlobTest extends MediaWikiTestCase { // Hack non-empty early return since PHPUnit expands this provider before running // the setUp() which marks the test as skipped. if ( !function_exists( 'xdiff_string_rabdiff' ) ) { - return array( array( '', 'Empty string' ) ); + return [ [ '', 'Empty string' ] ]; } - return array( - array( '', 'Empty string' ), - array( "\0", 'Null' ), - array( "\0\0\0", "Several nulls" ), - array( "Hello", "An ASCII string" ), - array( str_repeat( "x", 6000 ), "A string larger than xdiff's NMAX (5552)" ) - ); + return [ + [ '', 'Empty string' ], + [ "\0", 'Null' ], + [ "\0\0\0", "Several nulls" ], + [ "Hello", "An ASCII string" ], + [ str_repeat( "x", 6000 ), "A string larger than xdiff's NMAX (5552)" ] + ]; } }