autotest: loosen check on follow-mode check

This commit is contained in:
Peter Barker 2019-11-04 20:18:34 +11:00 committed by Peter Barker
parent 402f3ec09c
commit 9605639070
1 changed files with 1 additions and 1 deletions

View File

@ -3891,7 +3891,7 @@ class AutoTestCopter(AutoTest):
self.mav.recv_match(type='GLOBAL_POSITION_INT', blocking=True)
pos = self.mav.location()
delta = self.get_distance(expected_loc, pos)
max_delta = 2
max_delta = 3
self.progress("position delta=%f (want <%f)" % (delta, max_delta))
if delta < max_delta:
break