From e509e2c3a10d0045ec78c263a7aa87c6cdb11890 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 14 Feb 2013 14:08:51 +0100 Subject: [PATCH] Fix parentheses Change-Id: I6e7d99796635ed8f4ec462ae8661069b8518e5c5 --- tests/phpunit/includes/filebackend/FileBackendTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/phpunit/includes/filebackend/FileBackendTest.php b/tests/phpunit/includes/filebackend/FileBackendTest.php index b0e07f272b..ab39a0e143 100644 --- a/tests/phpunit/includes/filebackend/FileBackendTest.php +++ b/tests/phpunit/includes/filebackend/FileBackendTest.php @@ -143,14 +143,14 @@ class FileBackendTest extends MediaWikiTestCase { array( 'mwstore://backend/container/path', 'mwstore://backend/container/path' ), array( 'mwstore://backend/container//path', 'mwstore://backend/container/path' ), array( 'mwstore://backend/container///path', 'mwstore://backend/container/path' ), - array( 'mwstore://backend/container///path//to///obj', 'mwstore://backend/container/path/to/obj', + array( 'mwstore://backend/container///path//to///obj', 'mwstore://backend/container/path/to/obj' ), array( 'mwstore://', null ), array( 'mwstore://backend', null ), array( 'mwstore://backend//container/path', null ), array( 'mwstore://backend//container//path', null ), array( 'mwstore:///', null ), array( 'mwstore:/', null ), - array( 'mwstore:', null ), ) + array( 'mwstore:', null ), ); } -- 2.20.1