From 4074a5e783ba5f5f3762cf6884896d444474ff7d Mon Sep 17 00:00:00 2001 From: fbarbu15 Date: Thu, 14 Dec 2023 10:04:56 +0200 Subject: [PATCH] filter unsubscribe --- tests/relay/test_publish.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/relay/test_publish.py b/tests/relay/test_publish.py index 0beb52f8..5e94f961 100644 --- a/tests/relay/test_publish.py +++ b/tests/relay/test_publish.py @@ -55,7 +55,7 @@ class TestRelayPublish(StepsRelay): message = self.create_message(payload=to_base64("a" * (payload_length))) try: self.check_published_message_reaches_relay_peer(message, message_propagation_delay=2) - raise AssertionError("Duplicate message was retrieved twice") + raise AssertionError("Message with payload > 1MB was received") except Exception as ex: assert "couldn't find any messages" in str(ex)