Skip to content

Commit 1d77af8

Browse files
committed
fix failing doctest
1 parent a28008c commit 1d77af8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nipype/interfaces/afni/utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1327,10 +1327,10 @@ class Unifize(AFNICommand):
13271327
13281328
>>> from nipype.interfaces import afni
13291329
>>> unifize = afni.Unifize()
1330-
>>> unifize.inputs.in_file = 't1.nii'
1331-
>>> unifize.inputs.out_file = 't1_unifized.nii'
1330+
>>> unifize.inputs.in_file = 'structural.nii'
1331+
>>> unifize.inputs.out_file = 'structural_unifized.nii'
13321332
>>> unifize.cmdline # doctest: +ALLOW_UNICODE
1333-
'3dUnifize -prefix t1_unifized.nii -input t1.nii'
1333+
'3dUnifize -prefix structural_unifized.nii -input structural.nii'
13341334
>>> res = unifize.run() # doctest: +SKIP
13351335
13361336
"""

0 commit comments

Comments
 (0)