Skip to content

Commit 50f8d81

Browse files
committed
update warp interface test
1 parent 1ef1821 commit 50f8d81

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

nipype/interfaces/afni/tests/test_auto_Warp.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,12 @@ def test_Warp_inputs():
2929
oblique_parent=dict(argstr='-oblique_parent %s', ),
3030
out_file=dict(
3131
argstr='-prefix %s',
32+
keep_extension=True,
3233
name_source='in_file',
3334
name_template='%s_warp',
3435
),
3536
outputtype=dict(),
37+
save_warp=dict(usedefault=True, ),
3638
tta2mni=dict(argstr='-tta2mni', ),
3739
verbose=dict(argstr='-verb', ),
3840
zpad=dict(argstr='-zpad %d', ),
@@ -43,7 +45,10 @@ def test_Warp_inputs():
4345
for metakey, value in list(metadata.items()):
4446
assert getattr(inputs.traits()[key], metakey) == value
4547
def test_Warp_outputs():
46-
output_map = dict(out_file=dict(), )
48+
output_map = dict(
49+
out_file=dict(),
50+
warp_file=dict(),
51+
)
4752
outputs = Warp.output_spec()
4853

4954
for key, metadata in list(output_map.items()):

0 commit comments

Comments
 (0)