@@ -587,8 +587,8 @@ def test_state_connect_6a():
587
587
588
588
589
589
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
592
592
"""
593
593
st1 = State (name = "NA" , splitter = "a" )
594
594
st2 = State (name = "NB" , other_states = {"NA" : (st1 , ["x" , "y" ])})
@@ -612,9 +612,9 @@ def test_state_connect_7():
612
612
613
613
614
614
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
618
618
"""
619
619
st1 = State (name = "NA" , splitter = "a" )
620
620
st2 = State (name = "NB" , other_states = {"NA" : (st1 , "b" )})
@@ -643,8 +643,8 @@ def test_state_connect_8():
643
643
reason = "doesn't recognize that NC.y has 4 elements (not independend on NC.x)"
644
644
)
645
645
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
648
648
649
649
"""
650
650
st1 = State (name = "NA_1" , splitter = "a" )
@@ -931,6 +931,7 @@ def test_state_connect_innerspl_3():
931
931
the second state has one inner splitter and one 'normal' splitter
932
932
the prev-state parts of the splitter have to be added
933
933
"""
934
+
934
935
st1 = State (name = "NA" , splitter = "a" )
935
936
st2 = State (name = "NB" , splitter = ["c" , "b" ], other_states = {"NA" : (st1 , "b" )})
936
937
st3 = State (name = "NC" , splitter = "d" , other_states = {"NB" : (st2 , "a" )})
0 commit comments