From e95c75d702c8a0196568a6b5b463857df6d2ca2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Walstr=C3=B6m?= Date: Wed, 29 Apr 2026 20:38:55 +0200 Subject: [PATCH] test: wireguard_roadwarrior: Adapt to the new polled world in yangerd --- test/case/interfaces/wireguard_roadwarrior/test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/case/interfaces/wireguard_roadwarrior/test.py b/test/case/interfaces/wireguard_roadwarrior/test.py index 4ed4b7e0..f1372269 100755 --- a/test/case/interfaces/wireguard_roadwarrior/test.py +++ b/test/case/interfaces/wireguard_roadwarrior/test.py @@ -335,8 +335,8 @@ with infamy.Test() as test: ) with test.step("Check on the server that both clients is connected"): - util.parallel(lambda: util.until(lambda: wg.is_peer_up(server, "wg0", client1_public_key)), - lambda: util.until(lambda: wg.is_peer_up(server, "wg0", client2_public_key))) + util.parallel(lambda: util.until(lambda: wg.is_peer_up(server, "wg0", client1_public_key), attempts = 30), + lambda: util.until(lambda: wg.is_peer_up(server, "wg0", client2_public_key), attempts = 30)) with infamy.IsolatedMacVlan(hport_server) as ns_server, \ infamy.IsolatedMacVlan(hport_client1) as ns_client1, \