Fix parentheses
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Thu, 14 Feb 2013 13:08:51 +0000 (14:08 +0100)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Thu, 14 Feb 2013 13:08:51 +0000 (14:08 +0100)
Change-Id: I6e7d99796635ed8f4ec462ae8661069b8518e5c5

tests/phpunit/includes/filebackend/FileBackendTest.php

index b0e07f2..ab39a0e 100644 (file)
@@ -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 ),
                );
        }