From 4240ad7ae91da2875941a586def20cb205d48e45 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Tue, 10 May 2022 19:45:47 +1000 Subject: [PATCH] autotest: update test for which entry is last in tasks table --- Tools/autotest/arducopter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/autotest/arducopter.py b/Tools/autotest/arducopter.py index a33bdcc1dd..330e3094a3 100644 --- a/Tools/autotest/arducopter.py +++ b/Tools/autotest/arducopter.py @@ -8628,7 +8628,7 @@ class AutoTestCopter(AutoTest): if not lines[0].startswith("TasksV2"): raise NotAchievedException("Expected TasksV2 as first line first not (%s)" % lines[0]) # last line is empty, so -2 here - if not lines[-2].startswith("AP_EFI::update"): + if not lines[-2].startswith("AP_Vehicle::update_arming"): raise NotAchievedException("Expected EFI last not (%s)" % lines[-2]) def tests1a(self):