From 50ccbb5d0ce1f8899d5403a13dda2e4de7e56ebf Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Tue, 13 Feb 2018 12:12:27 +1100 Subject: [PATCH] Tools: autotest: correct speedup parameter handling --- Tools/autotest/autotest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/autotest/autotest.py b/Tools/autotest/autotest.py index 80762a4fc2..4f7f908063 100755 --- a/Tools/autotest/autotest.py +++ b/Tools/autotest/autotest.py @@ -257,7 +257,7 @@ def run_step(step): "gdbserver": opts.gdbserver, } if opts.speedup is not None: - fly_opts.speedup = opts.speedup + fly_opts["speedup"] = opts.speedup if step == 'fly.ArduCopter': return arducopter.fly_ArduCopter(binary, frame=opts.frame, **fly_opts)