From 8643322f06d9fe0ac8d93afade34a25eeebc38f9 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Tue, 20 Apr 2021 13:31:30 +1000 Subject: [PATCH] autotest: correct string we expect from MAVProxy Was APM: now AP: --- 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 c98def9a96..f95e0bfbfc 100644 --- a/Tools/autotest/common.py +++ b/Tools/autotest/common.py @@ -8996,7 +8996,7 @@ switch value''' mavproxy.expect("sitl_accelcal: sending attitude, please wait..", timeout=timeout) mavproxy.expect("sitl_accelcal: attitude detected, please press any key..", timeout=timeout) mavproxy.send("\n") - mavproxy.expect("APM: Calibration successful", timeout=timeout) + mavproxy.expect(".*Calibration successful", timeout=timeout) self.drain_mav() self.progress("Checking results")