autotest: fix simstate error message

This commit is contained in:
Peter Barker 2021-06-28 10:39:51 +10:00 committed by Peter Barker
parent 9f5591be02
commit 27fcb3a100
1 changed files with 1 additions and 1 deletions

View File

@ -4767,7 +4767,7 @@ class AutoTest(ABC):
data = "dist=%f max=%f (simstate: %s start-loc: %s)" % (dist, dist_max, simstate_loc, start_loc)
if dist > dist_max:
raise NotAchievedException("simstate from startup location: %s" % data)
raise NotAchievedException("simstate far from startup location: %s" % data)
self.progress("Simstate Close to startup location: %s" % data)
def reach_distance_manual(self, distance):