Skip to content

Commit 57e83fd

Browse files
committed
update test
1 parent 593aea8 commit 57e83fd

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

nipype/interfaces/mrtrix3/tests/test_auto_MRResize.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ def test_MRResize_inputs():
3636
mandatory=True,
3737
position=-2,
3838
),
39-
interp=dict(argstr='-interp %s', ),
39+
interpolation=dict(
40+
argstr='-interp %s',
41+
usedefault=True,
42+
),
4043
nthreads=dict(
4144
argstr='-nthreads %d',
4245
nohash=True,
@@ -50,12 +53,12 @@ def test_MRResize_inputs():
5053
position=-1,
5154
),
5255
scale_factor=dict(
53-
argstr='-scale %d,%d,%d',
56+
argstr='-scale %g,%g,%g',
5457
mandatory=True,
5558
xor=['image_size', 'voxel_size'],
5659
),
5760
voxel_size=dict(
58-
argstr='-voxel %d,%d,%d',
61+
argstr='-voxel %g,%g,%g',
5962
mandatory=True,
6063
xor=['image_size', 'scale_factor'],
6164
),

0 commit comments

Comments
 (0)