Skip to content

Commit

Permalink
refactor (#712)
Browse files Browse the repository at this point in the history
  • Loading branch information
Remi-Gau authored Jul 10, 2024
1 parent 845b186 commit aff056e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/tests_private/test_file_utils.m
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ function test_file_utils_basic()
%% test to list files

file = bids.internal.file_utils('List', ...
fullfile(fileparts(mfilename('fullpath'))), ...
fileparts(mfilename('fullpath')), ...
'^test_file_utils.m$');
assertEqual(file, 'test_file_utils.m');

this_dir = fullfile(fileparts(mfilename('fullpath')));
this_dir = fileparts(mfilename('fullpath'));
parent_dir = fullfile(this_dir, '..');

file = bids.internal.file_utils('List', ...
Expand Down

0 comments on commit aff056e

Please sign in to comment.