From 251772b76dbaf6a37f1fb7b1154f305c659c3f30 Mon Sep 17 00:00:00 2001 From: Fabiana Cecin Date: Tue, 16 Dec 2025 06:07:12 -0300 Subject: [PATCH] chore: fix two smoke tests to mount both lightpush and relay (#146) --- tests/discv5/test_discv5.py | 2 +- tests/store/test_running_nodes.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/discv5/test_discv5.py b/tests/discv5/test_discv5.py index b8ab88b3..933a489d 100644 --- a/tests/discv5/test_discv5.py +++ b/tests/discv5/test_discv5.py @@ -66,7 +66,7 @@ class TestDiscv5(StepsRelay, StepsFilter, StepsStore, StepsLightPush): self.light_push_node1 = self.running_a_node( NODE_2, lightpush="true", - relay="false", + relay="true", discv5_bootstrap_node=self.receiving_node1.get_enr_uri(), lightpushnode=self.receiving_node1.get_multiaddr_with_id(), ) diff --git a/tests/store/test_running_nodes.py b/tests/store/test_running_nodes.py index b5d3c66d..a4d827b9 100644 --- a/tests/store/test_running_nodes.py +++ b/tests/store/test_running_nodes.py @@ -60,7 +60,7 @@ class TestRunningNodes(StepsStore): def test_store_lightpushed_message(self): self.setup_first_publishing_node(store="true", relay="true", lightpush="true") self.setup_second_publishing_node(store="false", relay="true") - self.setup_first_store_node(store="false", relay="false", lightpush="true", lightpushnode=self.multiaddr_list[0]) + self.setup_first_store_node(store="false", relay="true", lightpush="true", lightpushnode=self.multiaddr_list[0]) self.subscribe_to_pubsub_topics_via_relay() self.publish_message(via="lightpush", sender=self.store_node1) self.check_published_message_is_stored(page_size=5, ascending="true")