From e06d83a8da5b24c67e7a5077f6ce21a20149b50b Mon Sep 17 00:00:00 2001 From: Florin Barbu Date: Tue, 10 Dec 2024 10:29:09 +0200 Subject: [PATCH] chore: fix wrong store node type --- tests/store/test_reliability.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/store/test_reliability.py b/tests/store/test_reliability.py index ed1a4e5d..7c6ee4ca 100644 --- a/tests/store/test_reliability.py +++ b/tests/store/test_reliability.py @@ -85,7 +85,7 @@ class TestReliability(StepsStore): def test_message_relayed_while_store_node_is_stopped_without_removing(self): self.setup_first_publishing_node(store="true", relay="true") - self.setup_first_store_node(store="false", relay="true", remove_container=False) + self.setup_first_store_node(store="false", relay="false", remove_container=False) self.subscribe_to_pubsub_topics_via_relay() self.publish_message() self.check_published_message_is_stored(page_size=5)