Skip to content

Commit eedc36e

Browse files
committed
Fixed error in doctest
1 parent ebe0311 commit eedc36e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nipype/pipeline/engine.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1271,9 +1271,9 @@ class GraftWorkflow(InterfacedWorkflow):
12711271
>>> wf = npe.GraftWorkflow(name='graft', fields_from=wf1)
12721272
>>> wf.insert(wf1)
12731273
>>> wf.insert(wf2)
1274-
>>> wf.inputs.in_file = 'reference.nii'
1275-
>>> wf.inputs.thres = 1.0
1276-
>>> wf.write_graph(format='pdf') # doctest: +SKIP
1274+
>>> wf.inputs.in_file = 'structural.nii'
1275+
>>> wf.inputs.thresh = 1.0
1276+
>>> wf.run() # doctest: +SKIP
12771277
"""
12781278
_children = dict()
12791279
_outnodes = dict()

0 commit comments

Comments
 (0)