Skip to content

Commit

Permalink
tests/test_message_bus.py: re-order processes
Browse files Browse the repository at this point in the history
  • Loading branch information
szobov committed Sep 17, 2024
1 parent d4f105a commit 9a2b185
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_message_bus.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)


Expand All @@ -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:
Expand Down

0 comments on commit 9a2b185

Please sign in to comment.