test: dhcp: client_default_gw: Add longer timeout for test

This fix #1461
This commit is contained in:
Mattias Walström
2026-03-31 12:26:46 +02:00
parent 9014d7edb7
commit addd89e07e
+1 -1
View File
@@ -42,6 +42,6 @@ with infamy.Test() as test:
client.put_config_dict("ietf-interfaces", config)
with test.step("Verify DHCP client has default route via 192.168.0.254"):
until(lambda: route.ipv4_route_exist(client, "0.0.0.0/0", ROUTER))
until(lambda: route.ipv4_route_exist(client, "0.0.0.0/0", ROUTER), attempts=30)
test.succeed()