Skip to content

Commit c48ca9d

Browse files
committed
update doctest
1 parent e4efa86 commit c48ca9d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pydra/tasks/fsl/model/cluster.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,8 @@ class Cluster(ShellCommandTask):
227227
>>> task.inputs.in_file = "zstat1.nii.gz"
228228
>>> task.inputs.threshold = 2.3
229229
>>> task.inputs.use_mm = True
230-
>>> task.cmdline
231-
'cluster --in=zstat1.nii.gz --thresh=2.3000000000 --mm' # doctest: +ELLIPSIS
230+
>>> task.cmdline # doctest: +ELLIPSIS
231+
'cluster --in=zstat1.nii.gz --thresh=2.3000000000 --mm'
232232
"""
233233

234234
input_spec = Cluster_input_spec

pydra/tasks/fsl/model/glm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ class GLM(ShellCommandTask):
185185
>>> task = GLM()
186186
>>> task.inputs.in_file = "test.nii.gz"
187187
>>> task.inputs.design = "confounds_regressors.tsv"
188-
>>> task.cmdline
189-
'fsl_glm -i test.nii.gz -d confounds_regressors.tsv' # doctest: +ELLIPSIS
188+
>>> task.cmdline # doctest: +ELLIPSIS
189+
'fsl_glm -i test.nii.gz -d confounds_regressors.tsv'
190190
"""
191191

192192
input_spec = GLM_input_spec

0 commit comments

Comments
 (0)