Skip to content

Commit 1dc307b

Browse files
committed
fixing black
1 parent 46b0492 commit 1dc307b

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

pydra/engine/tests/test_state.py

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -587,8 +587,8 @@ def test_state_connect_6a():
587587

588588

589589
def test_state_connect_7():
590-
""" two 'connected' states with multiple fields that are connected
591-
no explicit splitter for the second state
590+
"""two 'connected' states with multiple fields that are connected
591+
no explicit splitter for the second state
592592
"""
593593
st1 = State(name="NA", splitter="a")
594594
st2 = State(name="NB", other_states={"NA": (st1, ["x", "y"])})
@@ -612,9 +612,9 @@ def test_state_connect_7():
612612

613613

614614
def test_state_connect_8():
615-
""" three 'connected' states: NA -> NB -> NC; NA -> NC (only NA has its own splitter)
616-
pydra should recognize, that there is only one splitter - NA
617-
and it should give the same as the previous test
615+
"""three 'connected' states: NA -> NB -> NC; NA -> NC (only NA has its own splitter)
616+
pydra should recognize, that there is only one splitter - NA
617+
and it should give the same as the previous test
618618
"""
619619
st1 = State(name="NA", splitter="a")
620620
st2 = State(name="NB", other_states={"NA": (st1, "b")})
@@ -643,8 +643,8 @@ def test_state_connect_8():
643643
reason="doesn't recognize that NC.y has 4 elements (not independend on NC.x)"
644644
)
645645
def test_state_connect_9():
646-
""" four 'connected' states: NA1 -> NB; NA2 -> NB, NA1 -> NC; NB -> NC
647-
pydra should recognize, that there is only one splitter - NA_1 and NA_2
646+
"""four 'connected' states: NA1 -> NB; NA2 -> NB, NA1 -> NC; NB -> NC
647+
pydra should recognize, that there is only one splitter - NA_1 and NA_2
648648
649649
"""
650650
st1 = State(name="NA_1", splitter="a")
@@ -931,6 +931,7 @@ def test_state_connect_innerspl_3():
931931
the second state has one inner splitter and one 'normal' splitter
932932
the prev-state parts of the splitter have to be added
933933
"""
934+
934935
st1 = State(name="NA", splitter="a")
935936
st2 = State(name="NB", splitter=["c", "b"], other_states={"NA": (st1, "b")})
936937
st3 = State(name="NC", splitter="d", other_states={"NB": (st2, "a")})

0 commit comments

Comments
 (0)