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)