Autotest: Remove frame initialisation.

This will otherwise override the --frame parameter. The init() function takes care of the initialisation
This commit is contained in:
Karthik Desai 2018-04-13 10:45:27 +02:00 committed by Peter Barker
parent fdfa08c586
commit 75ae59c0c8
2 changed files with 0 additions and 2 deletions

View File

@ -1106,7 +1106,6 @@ class AutoTestCopter(AutoTest):
def autotest(self): def autotest(self):
"""Autotest ArduCopter in SITL.""" """Autotest ArduCopter in SITL."""
self.frame = '+'
if not self.hasInit: if not self.hasInit:
self.init() self.init()

View File

@ -148,7 +148,6 @@ class AutoTestQuadPlane(AutoTest):
def autotest(self): def autotest(self):
"""Autotest QuadPlane in SITL.""" """Autotest QuadPlane in SITL."""
self.frame = 'quadplane'
if not self.hasInit: if not self.hasInit:
self.init() self.init()