From 6ea7d0a258ef5b04413a69221a209711177a70bb Mon Sep 17 00:00:00 2001 From: Andy Piper Date: Tue, 11 Jul 2023 19:28:18 +0100 Subject: [PATCH] autotest: relax constraints on wait_speed_vector() --- Tools/autotest/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/autotest/common.py b/Tools/autotest/common.py index 5aa91433a8..7b9f407fe2 100644 --- a/Tools/autotest/common.py +++ b/Tools/autotest/common.py @@ -6766,7 +6766,7 @@ class AutoTest(ABC): return Vector3(msg.vx, msg.vy, msg.vz) """Wait for a given speed vector.""" - def wait_speed_vector(self, speed_vector, accuracy=0.2, timeout=30, **kwargs): + def wait_speed_vector(self, speed_vector, accuracy=0.3, timeout=30, **kwargs): def validator(value2, target2): return (math.fabs(value2.x - target2.x) <= accuracy and math.fabs(value2.y - target2.y) <= accuracy and