Tools: autotest: increase timeout on mission_item_int

We may spend so much time parsing messages this deadline passes
This commit is contained in:
Peter Barker 2019-08-07 11:14:35 +10:00 committed by Peter Barker
parent 472d98dcb7
commit 9aa5cedd2a
1 changed files with 1 additions and 1 deletions

View File

@ -2196,7 +2196,7 @@ class AutoTest(ABC):
mission_type)
m = self.mav.recv_match(type='MISSION_ITEM_INT',
blocking=True,
timeout=1)
timeout=5)
if m is None:
raise NotAchievedException("Did not receive MISSION_ITEM_INT")
if m.mission_type != mission_type: