Index: telemetry/telemetry/core/android_action_runner.py |
diff --git a/telemetry/telemetry/core/android_action_runner.py b/telemetry/telemetry/core/android_action_runner.py |
index 07fdccb71d5f7fbd24fe7cd08058013f44569ac5..6f4848d0d15011ecc72a05d37f036cd45343e032 100644 |
--- a/telemetry/telemetry/core/android_action_runner.py |
+++ b/telemetry/telemetry/core/android_action_runner.py |
@@ -105,7 +105,7 @@ class AndroidActionRunner(object): |
duration: The length of time of the swipe in milliseconds |
""" |
cmd = ['input', 'swipe'] |
- cmd.expand(str(x) for x in (left_start_coord, top_start_coord, |
+ cmd.extend(str(x) for x in (left_start_coord, top_start_coord, |
left_end_coord, top_end_coord, duration)) |
self._platform_backend.device.RunShellCommand(cmd, check_return=True) |