autotest: correct sub output on test failure

This commit is contained in:
Peter Barker 2020-01-02 14:47:17 +11:00 committed by Peter Barker
parent 54b6e7b264
commit 54521fbbcb
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ class AutoTestSub(AutoTest):
self.progress('Altitude hold done: %f' % (previous_altitude))
return
if abs(m.alt - previous_altitude) > delta:
raise NotAchievedException("Altitude not maintained: want %.2f (~%.2f) got=%.2f" % (m, delta, m.alt))
raise NotAchievedException("Altitude not maintained: want %.2f (+/- %.2f) got=%.2f" % (previous_altitude, delta, m.alt))
def test_alt_hold(self):
"""Test ALT_HOLD mode