Merge pull request #1463 from kernelkit/fix-dhcp-client-test

test: dhcp: client_default_gw: Add longer timeout for test
This commit is contained in:
Joachim Wiberg
2026-03-31 15:49:55 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ Change Log
All notable changes to the project are documented in this file.
[v26.03.0][] - 2026-03-30
[v26.03.0][] - 2026-03-31
-------------------------
### Changes
+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()