Browse Source

autotest: correct sub output on test failure

c415-sdk
Peter Barker 5 years ago committed by Peter Barker
parent
commit
54521fbbcb
  1. 2
      Tools/autotest/ardusub.py

2
Tools/autotest/ardusub.py

@ -92,7 +92,7 @@ class AutoTestSub(AutoTest): @@ -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

Loading…
Cancel
Save