Skip to content

Commit 67b9d73

Browse files
committed
fix: auto test
1 parent 0701c55 commit 67b9d73

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

nipype/interfaces/fsl/tests/test_auto_ApplyXfm.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# AUTO-GENERATED by tools/checkspecs.py - DO NOT EDIT
22
from __future__ import unicode_literals
3-
from ..preprocess import ApplyXfm
3+
from ..preprocess import ApplyXFM
44

55

6-
def test_ApplyXfm_inputs():
6+
def test_ApplyXFM_inputs():
77
input_map = dict(angle_rep=dict(argstr='-anglerep %s',
88
),
99
apply_isoxfm=dict(argstr='-applyisoxfm %f',
@@ -145,19 +145,19 @@ def test_ApplyXfm_inputs():
145145
min_ver='5.0.0',
146146
),
147147
)
148-
inputs = ApplyXfm.input_spec()
148+
inputs = ApplyXFM.input_spec()
149149

150150
for key, metadata in list(input_map.items()):
151151
for metakey, value in list(metadata.items()):
152152
assert getattr(inputs.traits()[key], metakey) == value
153153

154154

155-
def test_ApplyXfm_outputs():
155+
def test_ApplyXFM_outputs():
156156
output_map = dict(out_file=dict(),
157157
out_log=dict(),
158158
out_matrix_file=dict(),
159159
)
160-
outputs = ApplyXfm.output_spec()
160+
outputs = ApplyXFM.output_spec()
161161

162162
for key, metadata in list(output_map.items()):
163163
for metakey, value in list(metadata.items()):

0 commit comments

Comments
 (0)