Skip to content

Commit 5611985

Browse files
author
klwu
committed
fixing pipeline.add_edge to connect both a and b to c
1 parent fa8e90f commit 5611985

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codeflare/tests/test_and.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ def test_and():
4545
node_c = dm.AndNode('c', FeatureUnion())
4646

4747
## codeflare nodes are then connected by edges
48-
pipeline.add_edge(node_a, node_b)
4948
pipeline.add_edge(node_a, node_c)
49+
pipeline.add_edge(node_b, node_c)
5050

5151
in_args={node_a: Xy_ref_ptrs, node_b: Xy_ref_ptrs}
5252
## execute the codeflare pipeline

0 commit comments

Comments
 (0)