File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -20,19 +20,23 @@ def test_MeshFix_inputs():
20
20
epsilon_angle = dict (argstr = '-a %f' , ),
21
21
finetuning_distance = dict (
22
22
argstr = '%f' ,
23
+ position = - 2 ,
23
24
requires = ['finetuning_substeps' ],
24
25
),
25
26
finetuning_inwards = dict (
26
27
argstr = '--fineTuneIn ' ,
28
+ position = - 3 ,
27
29
requires = ['finetuning_distance' , 'finetuning_substeps' ],
28
30
),
29
31
finetuning_outwards = dict (
30
32
argstr = '--fineTuneOut ' ,
33
+ position = - 3 ,
31
34
requires = ['finetuning_distance' , 'finetuning_substeps' ],
32
35
xor = ['finetuning_inwards' ],
33
36
),
34
37
finetuning_substeps = dict (
35
38
argstr = '%d' ,
39
+ position = - 1 ,
36
40
requires = ['finetuning_distance' ],
37
41
),
38
42
in_file1 = dict (
@@ -89,8 +93,6 @@ def test_MeshFix_inputs():
89
93
for key , metadata in list (input_map .items ()):
90
94
for metakey , value in list (metadata .items ()):
91
95
assert getattr (inputs .traits ()[key ], metakey ) == value
92
-
93
-
94
96
def test_MeshFix_outputs ():
95
97
output_map = dict (mesh_file = dict (), )
96
98
outputs = MeshFix .output_spec ()
You can’t perform that action at this time.
0 commit comments