Skip to content

Commit 1fc0507

Browse files
author
Michael Joseph
committed
ran make specs
1 parent b755445 commit 1fc0507

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

nipype/algorithms/tests/test_auto_ACompCor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ def test_ACompCor_inputs():
2525
realigned_file=dict(mandatory=True, ),
2626
regress_poly_degree=dict(usedefault=True, ),
2727
repetition_time=dict(),
28-
save_metadata=dict(),
29-
save_pre_filter=dict(),
28+
save_metadata=dict(usedefault=True, ),
29+
save_pre_filter=dict(usedefault=True, ),
3030
use_regress_poly=dict(
3131
deprecated='0.15.0',
3232
new_name='pre_filter',

nipype/algorithms/tests/test_auto_TCompCor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ def test_TCompCor_inputs():
2626
realigned_file=dict(mandatory=True, ),
2727
regress_poly_degree=dict(usedefault=True, ),
2828
repetition_time=dict(),
29-
save_metadata=dict(),
30-
save_pre_filter=dict(),
29+
save_metadata=dict(usedefault=True, ),
30+
save_pre_filter=dict(usedefault=True, ),
3131
use_regress_poly=dict(
3232
deprecated='0.15.0',
3333
new_name='pre_filter',

nipype/interfaces/fsl/tests/test_auto_EddyQuad.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,25 @@ def test_EddyQuad_inputs():
1212
usedefault=True,
1313
),
1414
bval_file=dict(
15-
argstr='--bvals=%s',
15+
argstr='--bvals %s',
1616
mandatory=True,
1717
),
18-
bvec_file=dict(argstr='--bvecs=%s', ),
18+
bvec_file=dict(argstr='--bvecs %s', ),
1919
environ=dict(
2020
nohash=True,
2121
usedefault=True,
2222
),
23-
field=dict(argstr='--field=%s', ),
23+
field=dict(argstr='--field %s', ),
2424
idx_file=dict(
25-
argstr='--eddyIdx=%s',
25+
argstr='--eddyIdx %s',
2626
mandatory=True,
2727
),
2828
mask_file=dict(
29-
argstr='--mask=%s',
29+
argstr='--mask %s',
3030
mandatory=True,
3131
),
3232
output_dir=dict(
33-
argstr='--output-dir=%s',
33+
argstr='--output-dir %s',
3434
name_source=['base_name'],
3535
name_template='%s.qc',
3636
),
@@ -39,7 +39,7 @@ def test_EddyQuad_inputs():
3939
argstr='--eddyParams=%s',
4040
mandatory=True,
4141
),
42-
slice_spec=dict(argstr='--slspec=%s', ),
42+
slice_spec=dict(argstr='--slspec %s', ),
4343
verbose=dict(argstr='--verbose', ),
4444
)
4545
inputs = EddyQuad.input_spec()

nipype/interfaces/spm/tests/test_auto_Level1Design.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ def test_Level1Design_inputs():
1010
mandatory=True,
1111
),
1212
factor_info=dict(field='fact', ),
13+
flags=dict(),
1314
global_intensity_normalization=dict(field='global', ),
1415
interscan_interval=dict(
1516
field='timing.RT',

0 commit comments

Comments
 (0)