Skip to content

Commit

Permalink
fix pipeline test (#6741)
Browse files Browse the repository at this point in the history
  • Loading branch information
anakin87 committed Jan 15, 2024
1 parent 24afc2a commit 8eba053
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/core/pipeline/test_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ def test_from_dict():
"conn_type": "int",
"from_socket": OutputSocket(name="result", type=int, receivers=["double"]),
"to_socket": InputSocket(name="value", type=int, senders=["add_two"]),
"mandatory": True,
},
)
assert connections[1] == (
Expand All @@ -147,6 +148,7 @@ def test_from_dict():
"conn_type": "int",
"from_socket": OutputSocket(name="value", type=int, receivers=["add_default"]),
"to_socket": InputSocket(name="value", type=int, senders=["double"]),
"mandatory": True,
},
)

Expand Down Expand Up @@ -217,6 +219,7 @@ def test_from_dict_with_components_instances():
"conn_type": "int",
"from_socket": OutputSocket(name="result", type=int, receivers=["double"]),
"to_socket": InputSocket(name="value", type=int, senders=["add_two"]),
"mandatory": True,
},
)
assert connections[1] == (
Expand All @@ -226,6 +229,7 @@ def test_from_dict_with_components_instances():
"conn_type": "int",
"from_socket": OutputSocket(name="value", type=int, receivers=["add_default"]),
"to_socket": InputSocket(name="value", type=int, senders=["double"]),
"mandatory": True,
},
)

Expand Down

0 comments on commit 8eba053

Please sign in to comment.