From a0f7aea67e60f55cc622b8e04a67023aa1291998 Mon Sep 17 00:00:00 2001 From: Yuce Tekol Date: Thu, 7 May 2026 11:35:35 +0300 Subject: [PATCH] Update --- tests/integration/asyncio/proxy/topic_test.py | 1 + tests/integration/backward_compatible/proxy/topic_test.py | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/integration/asyncio/proxy/topic_test.py b/tests/integration/asyncio/proxy/topic_test.py index 18ccec9788..9069eb57c5 100644 --- a/tests/integration/asyncio/proxy/topic_test.py +++ b/tests/integration/asyncio/proxy/topic_test.py @@ -83,5 +83,6 @@ async def test_publish_all_none_message(self): await self.topic.publish_all(messages) async def test_ensure_on_messsage_is_not_none(self): + skip_if_client_version_older_than(self, "5.7.0") with self.assertRaises(AssertionError): await self.topic.add_listener(None) diff --git a/tests/integration/backward_compatible/proxy/topic_test.py b/tests/integration/backward_compatible/proxy/topic_test.py index 451bd8aa3b..886a186e78 100644 --- a/tests/integration/backward_compatible/proxy/topic_test.py +++ b/tests/integration/backward_compatible/proxy/topic_test.py @@ -81,5 +81,6 @@ def test_publish_all_none_message(self): self.topic.publish_all(messages) def test_ensure_on_messsage_is_not_none(self): + skip_if_client_version_older_than(self, "5.7.0") with self.assertRaises(AssertionError): self.topic.add_listener(None)