From 65b7a222390fc8929af227828483964f1dcdb7d7 Mon Sep 17 00:00:00 2001 From: Daniele Date: Thu, 16 May 2024 17:00:48 +0200 Subject: [PATCH] test fixing a timeout in test (#193) --- tests/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/util.py b/tests/util.py index 7eedf0c..401b99a 100644 --- a/tests/util.py +++ b/tests/util.py @@ -129,7 +129,7 @@ async def task_to_delete_connection(connection_name: str) -> None: for connection in connections: if connection["client_properties"]["connection_name"] == connection_name: delete_connection(connection["name"]) - await wait_for(lambda: get_connection(connection["name"]) is False, 2) + await wait_for(lambda: get_connection(connection["name"]) is False, 5) async def task_to_delete_stream_producer(producer: Producer, stream: str) -> None: