From da8388ce4706951c7c3c4105cfbd572a49a637f2 Mon Sep 17 00:00:00 2001 From: Aya Hassan Date: Mon, 26 Jan 2026 11:58:02 +0100 Subject: [PATCH] Fix CI issue --- src/steps/light_push.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/steps/light_push.py b/src/steps/light_push.py index 52eedb62c..7e70beb17 100644 --- a/src/steps/light_push.py +++ b/src/steps/light_push.py @@ -68,11 +68,11 @@ class StepsLightPush(StepsCommon): self.start_receiving_node(node, node_index=index + 2, lightpush="true", relay="true", pubsub_topic=self.test_pubsub_topic, **kwargs) @allure.step - def setup_first_lightpush_node(self, lightpush="true", relay="false", **kwargs): + def setup_first_lightpush_node(self, lightpush="true", relay="true", **kwargs): self.light_push_node1 = self.setup_lightpush_node(NODE_2, node_index=1, lightpush=lightpush, relay=relay, **kwargs) @allure.step - def setup_second_lightpush_node(self, lightpush="true", relay="false", **kwargs): + def setup_second_lightpush_node(self, lightpush="true", relay="true", **kwargs): self.light_push_node2 = self.setup_lightpush_node(NODE_2, node_index=2, lightpush=lightpush, relay=relay, **kwargs) @allure.step