File tree 1 file changed +13
-10
lines changed
nipype/interfaces/afni/tests
1 file changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -11,31 +11,34 @@ def test_Calc_inputs():
11
11
name_template = '%s_calc' ,
12
12
argstr = '-prefix %s' ,
13
13
),
14
- expr = dict (position = 2 ,
14
+ in_file_a = dict (position = 0 ,
15
+ mandatory = True ,
16
+ argstr = '-a %s' ,
17
+ ),
18
+ expr = dict (position = 3 ,
15
19
mandatory = True ,
16
20
argstr = '-expr "%s"' ,
17
21
),
18
22
args = dict (argstr = '%s' ,
19
23
),
20
24
outputtype = dict (),
25
+ start_idx = dict (requires = ['stop_idx' ],
26
+ ),
21
27
in_file_b = dict (position = 1 ,
22
28
argstr = ' -b %s' ,
23
29
),
24
- other = dict (argstr = '' ,
30
+ in_file_c = dict (position = 2 ,
31
+ argstr = ' -c %s' ,
25
32
),
26
- in_file_a = dict (position = 0 ,
27
- mandatory = True ,
28
- argstr = '-a %s' ,
33
+ terminal_output = dict (mandatory = True ,
34
+ nohash = True ,
29
35
),
30
36
environ = dict (nohash = True ,
31
37
usedefault = True ,
32
38
),
33
- single_idx = dict (),
34
- start_idx = dict (requires = ['stop_idx' ],
35
- ),
36
- terminal_output = dict (mandatory = True ,
37
- nohash = True ,
39
+ other = dict (argstr = '' ,
38
40
),
41
+ single_idx = dict (),
39
42
)
40
43
inputs = Calc .input_spec ()
41
44
You can’t perform that action at this time.
0 commit comments