Skip to content

Commit 5045a8b

Browse files
committed
fix tests (2)
1 parent 85452ce commit 5045a8b

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

nipype/interfaces/mrtrix3/preprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class ResponseSD(CommandLine):
106106
>>> resp.inputs.in_mask = 'mask.nii.gz'
107107
>>> resp.inputs.grad_fsl = ('bvecs', 'bvals')
108108
>>> resp.cmdline # doctest: +ELLIPSIS
109-
'dwi2response -fslgrad bvecs bvals -mask mask.nii.gz dwi.mif'
109+
'dwi2response -fslgrad bvecs bvals -mask mask.nii.gz dwi.mif response.txt'
110110
>>> resp.run() # doctest: +SKIP
111111
"""
112112

nipype/interfaces/mrtrix3/tracking.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,8 @@ class Tractography(CommandLine):
129129
>>> tk.inputs.roi_mask = 'mask.nii.gz'
130130
>>> tk.inputs.seed_sphere = (80, 100, 70, 10)
131131
>>> tk.cmdline # doctest: +ELLIPSIS
132-
'tckgen -algorithm iFOD2 -include mask.nii.gz \
133-
-seed_sphere 80.000000,100.000000,70.000000,10.000000 \
134-
./fods.mif tracked.tck'
132+
'tckgen -algorithm iFOD2 -mask mask.nii.gz -seed_sphere \
133+
80.000000,100.000000,70.000000,10.000000 fods.mif tracked.tck'
135134
>>> tk.run() # doctest: +SKIP
136135
"""
137136

0 commit comments

Comments
 (0)