Skip to content

Commit b0c432a

Browse files
committed
Fix phpcs issue in test file
1 parent 44f6186 commit b0c432a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tests/Unit/SettingsAddPathsTest.php

+7-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,13 @@ public static function dataAddPaths()
6262
'Paths passed on CLI, paths with spaces' => array(
6363
'original' => array('path with/spaces between/1', 'path with/spaces between/subdir/2'),
6464
'extra' => array('path/1', 'path/subdir/3', 'path/with spaces'),
65-
'expected' => array('path with/spaces between/1', 'path with/spaces between/subdir/2', 'path/1', 'path/subdir/3', 'path/with spaces'),
65+
'expected' => array(
66+
'path with/spaces between/1',
67+
'path with/spaces between/subdir/2',
68+
'path/1',
69+
'path/subdir/3',
70+
'path/with spaces'
71+
),
6672
)
6773
);
6874
}

0 commit comments

Comments
 (0)