autotest: allow more time for angle test to retrieve correct angle

Faster speedups mean we can simply not run this loop often enough to see the change
This commit is contained in:
Peter Barker 2022-08-01 15:01:26 +10:00 committed by Peter Barker
parent 4e4bfda05d
commit 7284fbc978
1 changed files with 1 additions and 1 deletions

View File

@ -6137,7 +6137,7 @@ class AutoTestCopter(AutoTest):
last_send = 0
while True:
now = self.get_sim_time_cached()
if now - tstart > 10:
if now - tstart > 100:
raise NotAchievedException("Did not get correct angle back")
if now - last_send > 0.1: