fix two smoke tests to mount both lightpush and relay

This commit is contained in:
Fabiana Cecin 2025-12-15 16:34:55 -03:00
parent 3bad0ad02e
commit 513df96e44
No known key found for this signature in database
GPG Key ID: BCAB8A55CB51B6C7
2 changed files with 2 additions and 2 deletions

View File

@ -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(),
)

View File

@ -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")