File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed
nipype/interfaces/ants/tests Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,9 @@ def test_LaplacianThickness_inputs():
77 input_map = dict (
88 args = dict (argstr = '%s' , ),
99 dT = dict (
10- argstr = '%f ' ,
10+ argstr = '%s ' ,
1111 position = 6 ,
12+ requires = ['prior_thickness' ],
1213 ),
1314 environ = dict (
1415 nohash = True ,
@@ -39,20 +40,23 @@ def test_LaplacianThickness_inputs():
3940 position = 3 ,
4041 ),
4142 prior_thickness = dict (
42- argstr = '%f ' ,
43+ argstr = '%s ' ,
4344 position = 5 ,
45+ requires = ['smooth_param' ],
4446 ),
4547 smooth_param = dict (
46- argstr = '%f ' ,
48+ argstr = '%s ' ,
4749 position = 4 ,
4850 ),
4951 sulcus_prior = dict (
50- argstr = '%f ' ,
52+ argstr = '%s ' ,
5153 position = 7 ,
54+ requires = ['dT' ],
5255 ),
5356 tolerance = dict (
54- argstr = '%f ' ,
57+ argstr = '%s ' ,
5558 position = 8 ,
59+ requires = ['sulcus_prior' ],
5660 ),
5761 )
5862 inputs = LaplacianThickness .input_spec ()
You can’t perform that action at this time.
0 commit comments