tiny-test-fw: Increase default expect timeout to 10 seconds

Fix CI failures due to (for example) DHCP lease taking more than 5s to be negotiated.
This commit is contained in:
Angus Gratton 2018-08-03 16:55:50 +10:00 committed by Angus Gratton
parent b3ff68a935
commit 6bd58beac5

View File

@ -259,7 +259,7 @@ class BaseDUT(object):
:param kwargs: extra args for DUT to create ports
"""
DEFAULT_EXPECT_TIMEOUT = 5
DEFAULT_EXPECT_TIMEOUT = 10
MAX_EXPECT_FAILURES_TO_SAVED = 10
LOG_THREAD = _LogThread()