We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bc0f75 commit 78b192cCopy full SHA for 78b192c
.gitignore
@@ -7,6 +7,11 @@ env/
7
8
lib/bids-matlab
9
10
+coverage_html
11
+coverage.xml
12
+test_report.log
13
+
14
15
16
## MATLAB / OCTAVE gitignore template
17
run_tests.m
@@ -1,9 +1,5 @@
1
% (C) Copyright 2019 spm_2_bids developers
2
3
-warning('OFF');
4
-
5
-spm('defaults', 'fMRI');
6
folderToCover = fullfile(pwd, 'src');
testFolder = fullfile(pwd, 'tests');
tests/test_mapping.m
@@ -39,7 +39,7 @@ function test_find_mapping()
39
map = map.default();
40
idx = map.find_mapping('prefix', 'rp_');
41
42
- assertEqual(find(idx), 10);
+ assertEqual(find(idx), 12);
43
44
end
45
0 commit comments