Skip to content

Commit

Permalink
test: Bump wait_for_iface() timeout
Browse files Browse the repository at this point in the history
On slow CI machines, the networking page sometimes is still loading
after 20 seconds.
  • Loading branch information
martinpitt committed Jun 22, 2023
1 parent d7f9545 commit 2e793ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/common/netlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def wait_for_iface(self, iface, active=True, state=None, prefix="10.111."):
text = "Inactive"

try:
with self.browser.wait_timeout(20):
with self.browser.wait_timeout(30):
self.browser.wait_in_text(sel, text)
except Error as e:
print(f"Interface {iface} didn't show up.")
Expand Down

0 comments on commit 2e793ec

Please sign in to comment.