Skip to content

Commit 63a20de

Browse files
committed
fixing splitter_final
1 parent cb7cd1d commit 63a20de

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

pydra/engine/state.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,10 +132,7 @@ def splitter_rpn_final(self):
132132

133133
@property
134134
def splitter_final(self):
135-
if self.combiner:
136-
return hlpst.rpn2splitter(self.splitter_rpn_final)
137-
else:
138-
return self.splitter
135+
return hlpst.rpn2splitter(self.splitter_rpn_final)
139136

140137
@property
141138
def splitter_rpn(self):

pydra/engine/tests/test_state.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1401,7 +1401,6 @@ def test_state_connect_combine_left_2():
14011401
assert st2.inputs_ind == [{"NB.b": 0}, {"NB.b": 1}, {"NB.b": 2}, {"NB.b": 3}]
14021402

14031403

1404-
@pytest.mark.xfail(reason="to fix")
14051404
def test_state_connect_combine_left_3():
14061405
""" three serially 'connected' states,
14071406
the first one has outer splitter,

0 commit comments

Comments
 (0)