File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
nipype/interfaces/afni/tests Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff 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
4547def 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 ()):
You can’t perform that action at this time.
0 commit comments