From fa56b0edc531b950593f1068afe1f8ff13f9dc77 Mon Sep 17 00:00:00 2001 From: Olivier Date: Sat, 16 Dec 2023 18:19:30 +0100 Subject: [PATCH] random change to try to fix a test ofr python 3.12 --- tests/test_subscriptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_subscriptions.py b/tests/test_subscriptions.py index 678e6cccc..0709280cf 100644 --- a/tests/test_subscriptions.py +++ b/tests/test_subscriptions.py @@ -1074,7 +1074,7 @@ async def result(self): mocker.patch.object(asyncua.common.subscription.Subscription, "publish_callback", publish_callback.set_result) mocker.patch.object(client.uaclient, "publish", publish) - sub = await client.create_subscription(30, None) + sub = await client.create_subscription(1, None) await sub.subscribe_data_change(var, queuesize=2) with pytest.raises(asyncio.TimeoutError):