Skip to content

Commit

Permalink
autotest: correct flake8 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbarker committed Oct 28, 2023
1 parent 4c7fa15 commit ebefde0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tools/autotest/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -7887,7 +7887,7 @@ def run_one_test_attempt(self, test, interact=False, attempt=1):
self.reset_SITL_commandline()
else:
self.progress("Force-rebooting SITL")
self.reboot_sitl() # that'll learn it
self.reboot_sitl(startup_location_dist_max=1000000) # that'll learn it
passed = False

if self._mavproxy is not None:
Expand Down Expand Up @@ -9961,7 +9961,7 @@ def poll_message(self, message_id, timeout=10, quiet=False, mav=None, target_sys
if m.id != message_id:
continue
if (m.get_srcSystem() != target_sysid or
m.get_srcComponent() != target_compid):
m.get_srcComponent() != target_compid):
continue
return m

Expand Down

0 comments on commit ebefde0

Please sign in to comment.