Skip to content

Commit fc4eaa6

Browse files
committed
fix test get confounds
1 parent d6809c9 commit fc4eaa6

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/bids/returnNameSkullstripOutput.m

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
% (C) Copyright 2020 bidspm developers
55

66
bf = bids.File(inputFilename, 'use_schema', false);
7-
bf.entity_order();
87

98
bf.entities.space = 'individual';
109

tests/tests_subject_level/test_getConfoundsRegressorFilename.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function test_getConfoundRegressorFile_basic()
2828

2929
function expectedFilename = getExpectedFilename()
3030
funcDir = fullfile(getDummyDataDir('preproc'), 'sub-01', 'ses-01', 'func');
31-
expectedFilename = fullfile(funcDir, ...
32-
'sub-01_ses-01_task-vislocalizer_desc-confounds_regressors.tsv');
31+
expectedFilename = {fullfile(funcDir, ...
32+
'sub-01_ses-01_task-vislocalizer_desc-confounds_regressors.tsv')};
3333

3434
end

tests/utils/createDummyData.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@ function createDummyData()
1919

2020
cd(startDir);
2121

22+
generateLayoutMat(true);
23+
2224
end

0 commit comments

Comments
 (0)