Tools: autotest: increase timeout waiting for MISSION_COUNT

This commit is contained in:
Peter Barker 2019-08-06 17:10:57 +10:00 committed by Peter Barker
parent 1ef6204c1d
commit f896af6800
1 changed files with 1 additions and 1 deletions

View File

@ -2168,7 +2168,7 @@ class AutoTest(ABC):
while True:
m = self.mav.recv_match(type='MISSION_COUNT',
blocking=True,
timeout=1)
timeout=5)
self.progress(str(m))
if m is None:
raise NotAchievedException("Did not get MISSION_COUNT response")