Skip to content

Commit 8d5875a

Browse files
committed
including changes within auto tests
1 parent fd379bc commit 8d5875a

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

nipype/algorithms/tests/test_auto_TCompCor.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,12 @@
44

55

66
def test_TCompCor_inputs():
7-
input_map = dict(components_file=dict(mandatory=False,
8-
usedefault=True,
7+
input_map = dict(components_file=dict(usedefault=True,
98
),
109
ignore_exception=dict(nohash=True,
1110
usedefault=True,
1211
),
13-
mask_file=dict(mandatory=False,
14-
),
12+
mask_file=dict(),
1513
num_components=dict(usedefault=True,
1614
),
1715
percentile_threshold=dict(usedefault=True,

nipype/interfaces/tests/test_auto_SignalExtraction.py

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,20 @@
66
def test_SignalExtraction_inputs():
77
input_map = dict(class_labels=dict(mandatory=True,
88
),
9-
detrend=dict(mandatory=False,
10-
usedefault=True,
9+
detrend=dict(usedefault=True,
1110
),
1211
ignore_exception=dict(nohash=True,
1312
usedefault=True,
1413
),
1514
in_file=dict(mandatory=True,
1615
),
17-
incl_shared_variance=dict(mandatory=False,
18-
usedefault=True,
16+
incl_shared_variance=dict(usedefault=True,
1917
),
20-
include_global=dict(mandatory=False,
21-
usedefault=True,
18+
include_global=dict(usedefault=True,
2219
),
2320
label_files=dict(mandatory=True,
2421
),
25-
out_file=dict(mandatory=False,
26-
usedefault=True,
22+
out_file=dict(usedefault=True,
2723
),
2824
)
2925
inputs = SignalExtraction.input_spec()

0 commit comments

Comments
 (0)