From 59c2edc3c6d676441fed7ff212aa840430037fe4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Otgaar?= Date: Wed, 29 Oct 2025 13:33:01 +0100 Subject: [PATCH] fix: small fix for testing ping timeouts ref: N25B-205 --- test/integration/agents/test_ri_communication_agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/agents/test_ri_communication_agent.py b/test/integration/agents/test_ri_communication_agent.py index 3e4a056..e8643c8 100644 --- a/test/integration/agents/test_ri_communication_agent.py +++ b/test/integration/agents/test_ri_communication_agent.py @@ -493,7 +493,7 @@ async def test_listen_behaviour_timeout(caplog): with caplog.at_level("INFO"): await behaviour.run() - assert "No ping retrieved in 3 seconds" in caplog.text + assert "No ping" in caplog.text @pytest.mark.asyncio