test: ipv4_autoconf: Increace possible delay when waiting for link local

No reason to be that narrow (10s) change to 30s
This commit is contained in:
Mattias Walström
2024-05-24 11:58:47 +02:00
committed by Tobias Waldekranz
parent d47cc76ab5
commit 6e07f5b6f8
+1 -1
View File
@@ -43,6 +43,6 @@ with infamy.Test() as test:
})
with test.step("Wait for linklocal address on interface"):
until(lambda: has_linklocal(target, tport), attempts=10)
until(lambda: has_linklocal(target, tport), attempts=30)
test.succeed()