mirror of https://github.com/ArduPilot/ardupilot
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:
parent
4e4bfda05d
commit
7284fbc978
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue