Tools: autotest: correct test for MAVProxy capabilities

Once MAVProxy actually gets support for fence and rally via mission item
protocol this can be changed.
This commit is contained in:
Peter Barker 2019-10-09 08:04:54 +11:00
parent 25fd04d402
commit a637c6e4ea

View File

@ -2223,7 +2223,7 @@ Brakes have negligible effect (with=%0.2fm without=%0.2fm delta=%0.2fm)
def mavproxy_can_do_mision_item_protocols(self):
mavproxy_version = self.mavproxy_version()
if not self.mavproxy_version_gt(1, 8, 12):
if False and not self.mavproxy_version_gt(1, 8, 12):
self.progress("MAVProxy is too old; skipping tests")
return False
return True