Skip to content

Commit eca31c7

Browse files
committed
fixed tests
1 parent 423b0a2 commit eca31c7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

nipype/algorithms/tests/test_auto_SpecifyModel.py

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

55
def test_SpecifyModel_inputs():
66
input_map = dict(event_files=dict(mandatory=True,
7-
xor=['subject_info'],
7+
xor=['subject_info', 'event_files'],
88
),
99
functional_runs=dict(copyfile=False,
1010
mandatory=True,
@@ -21,7 +21,7 @@ def test_SpecifyModel_inputs():
2121
realignment_parameters=dict(copyfile=False,
2222
),
2323
subject_info=dict(mandatory=True,
24-
xor=['event_files'],
24+
xor=['subject_info', 'event_files'],
2525
),
2626
time_repetition=dict(mandatory=True,
2727
),

nipype/algorithms/tests/test_auto_SpecifySPMModel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def test_SpecifySPMModel_inputs():
66
input_map = dict(concatenate_runs=dict(usedefault=True,
77
),
88
event_files=dict(mandatory=True,
9-
xor=['subject_info'],
9+
xor=['subject_info', 'event_files'],
1010
),
1111
functional_runs=dict(copyfile=False,
1212
mandatory=True,
@@ -25,7 +25,7 @@ def test_SpecifySPMModel_inputs():
2525
realignment_parameters=dict(copyfile=False,
2626
),
2727
subject_info=dict(mandatory=True,
28-
xor=['event_files'],
28+
xor=['subject_info', 'event_files'],
2929
),
3030
time_repetition=dict(mandatory=True,
3131
),

nipype/algorithms/tests/test_auto_SpecifySparseModel.py

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

55
def test_SpecifySparseModel_inputs():
66
input_map = dict(event_files=dict(mandatory=True,
7-
xor=['subject_info'],
7+
xor=['subject_info', 'event_files'],
88
),
99
functional_runs=dict(copyfile=False,
1010
mandatory=True,
@@ -29,7 +29,7 @@ def test_SpecifySparseModel_inputs():
2929
stimuli_as_impulses=dict(usedefault=True,
3030
),
3131
subject_info=dict(mandatory=True,
32-
xor=['event_files'],
32+
xor=['subject_info', 'event_files'],
3333
),
3434
time_acquisition=dict(mandatory=True,
3535
),

0 commit comments

Comments
 (0)