From 8eba053dbcb016066689a08b650edacfa44b2bad Mon Sep 17 00:00:00 2001 From: Stefano Fiorucci Date: Mon, 15 Jan 2024 13:59:11 +0100 Subject: [PATCH] fix pipeline test (#6741) --- test/core/pipeline/test_pipeline.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/core/pipeline/test_pipeline.py b/test/core/pipeline/test_pipeline.py index 8cac7d4c4..df6b0ab32 100644 --- a/test/core/pipeline/test_pipeline.py +++ b/test/core/pipeline/test_pipeline.py @@ -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] == ( @@ -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, }, ) @@ -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] == ( @@ -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, }, )