Skip to content

Commit

Permalink
Fix phpcs issue in test file
Browse files Browse the repository at this point in the history
  • Loading branch information
dingo-d committed May 16, 2024
1 parent 44f6186 commit b0c432a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/Unit/SettingsAddPathsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,13 @@ public static function dataAddPaths()
'Paths passed on CLI, paths with spaces' => array(
'original' => array('path with/spaces between/1', 'path with/spaces between/subdir/2'),
'extra' => array('path/1', 'path/subdir/3', 'path/with spaces'),
'expected' => array('path with/spaces between/1', 'path with/spaces between/subdir/2', 'path/1', 'path/subdir/3', 'path/with spaces'),
'expected' => array(
'path with/spaces between/1',
'path with/spaces between/subdir/2',
'path/1',
'path/subdir/3',
'path/with spaces'
),
)
);
}
Expand Down

0 comments on commit b0c432a

Please sign in to comment.