From 9a2b185754e519e66b34c2b39964d8eee9cfa190 Mon Sep 17 00:00:00 2001 From: Sergei Zobov Date: Tue, 17 Sep 2024 13:43:55 +0200 Subject: [PATCH] tests/test_message_bus.py: re-order processes --- tests/test_message_bus.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_message_bus.py b/tests/test_message_bus.py index 2f126df..5d3babe 100644 --- a/tests/test_message_bus.py +++ b/tests/test_message_bus.py @@ -36,7 +36,7 @@ def get_first_process() -> Process: subsribe_topics=(), publish_topics=(MessageTopic.AGENT_PATH,), process_function=send_message, - process_finish_policy=ProcessFinishPolicy.STOP_ALL, + process_finish_policy=ProcessFinishPolicy.NOTHING, ) @@ -62,8 +62,8 @@ def get_second_process() -> Process: def test_message_bus(): processes = ( - get_first_process(), get_second_process(), + get_first_process(), ) with get_process_executor() as executor: