From 6d68e8da46963f16bcbc605a9fb8badb476a2bda Mon Sep 17 00:00:00 2001 From: darshankabariya Date: Tue, 14 Jul 2026 22:14:24 +0530 Subject: [PATCH] fix: update according to suggestion --- tests/light_push/test_publish.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/light_push/test_publish.py b/tests/light_push/test_publish.py index 91f2ed513..841715396 100644 --- a/tests/light_push/test_publish.py +++ b/tests/light_push/test_publish.py @@ -29,7 +29,7 @@ class TestLightPushPublish(StepsLightPush): failed_payloads = [] for payload in SAMPLE_INPUTS: logger.debug(f'Running test with payload {payload["description"]}') - delay(0.25) # keep sends under the default lightpush:5/1s service rate limit + delay(0.5) message = self.create_message(payload=to_base64(payload["value"])) try: self.check_light_pushed_message_reaches_receiving_peer(message=message) @@ -89,7 +89,7 @@ class TestLightPushPublish(StepsLightPush): failed_content_topics = [] for content_topic in SAMPLE_INPUTS: logger.debug(f'Running test with content topic {content_topic["description"]}') - delay(0.25) # keep sends under the default lightpush:5/1s service rate limit + delay(0.5) message = self.create_message(contentTopic=content_topic["value"]) try: self.check_light_pushed_message_reaches_receiving_peer(message=message)