@@ -8,7 +8,10 @@ def test_TSmooth_inputs():
8
8
adaptive = dict (argstr = '-adaptive %d' , ),
9
9
args = dict (argstr = '%s' , ),
10
10
blackman = dict (argstr = '-blackman %d' , ),
11
- custom = dict (argstr = '-custom %s' , ),
11
+ custom = dict (
12
+ argstr = '-custom %s' ,
13
+ extensions = None ,
14
+ ),
12
15
datum = dict (argstr = '-datum %s' , ),
13
16
environ = dict (
14
17
nohash = True ,
@@ -18,6 +21,7 @@ def test_TSmooth_inputs():
18
21
in_file = dict (
19
22
argstr = '%s' ,
20
23
copyfile = False ,
24
+ extensions = None ,
21
25
mandatory = True ,
22
26
position = - 1 ,
23
27
),
@@ -31,7 +35,7 @@ def test_TSmooth_inputs():
31
35
osf = dict (argstr = '-osf' , ),
32
36
out_file = dict (
33
37
argstr = '-prefix %s' ,
34
- genfile = True ,
38
+ extensions = None ,
35
39
name_source = 'in_file' ,
36
40
name_template = '%s_smooth' ,
37
41
),
@@ -43,7 +47,7 @@ def test_TSmooth_inputs():
43
47
for metakey , value in list (metadata .items ()):
44
48
assert getattr (inputs .traits ()[key ], metakey ) == value
45
49
def test_TSmooth_outputs ():
46
- output_map = dict (out_file = dict (), )
50
+ output_map = dict (out_file = dict (extensions = None , ), )
47
51
outputs = TSmooth .output_spec ()
48
52
49
53
for key , metadata in list (output_map .items ()):
0 commit comments