From 0bd95a94cf6ea2793eb73753b8fa1f89d5c95ed8 Mon Sep 17 00:00:00 2001 From: Seb35 Date: Sat, 3 Sep 2016 16:29:13 +0200 Subject: [PATCH] Typo in a test: '+' instead of '.' to concatenate strings I found it by executing tests with PHP 7.1.0RC1, but even if PHP 7.1.0 is still a RC, this is a typo in PHP language. Change-Id: Ia97f881f8c80a23c51512189d9ca5a012612c532 --- tests/phpunit/includes/filerepo/file/FileTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/includes/filerepo/file/FileTest.php b/tests/phpunit/includes/filerepo/file/FileTest.php index c5fd369f14..6520610786 100644 --- a/tests/phpunit/includes/filerepo/file/FileTest.php +++ b/tests/phpunit/includes/filerepo/file/FileTest.php @@ -206,7 +206,7 @@ class FileTest extends MediaWikiMediaTestCase { ] ], [ [ 'supportsBucketing' => true, - 'tmpBucketedThumbCache' => [ 1024 => '/tmp/shouldnotexist' + rand() ], + 'tmpBucketedThumbCache' => [ 1024 => '/tmp/shouldnotexist' . rand() ], 'thumbnailBucket' => 1024, 'physicalWidth' => 2048, 'expectedPath' => 'fsFilePath', -- 2.20.1