Index: third_party/android_testrunner/adb_interface.py |
diff --git a/third_party/android_testrunner/adb_interface.py b/third_party/android_testrunner/adb_interface.py |
index b8f740b2f01b2e31e13cb84c1ed6c95af02b41a3..b47b860c59712f2f27f0b22ad0e836856e58b93f 100644 |
--- a/third_party/android_testrunner/adb_interface.py |
+++ b/third_party/android_testrunner/adb_interface.py |
@@ -51,7 +51,7 @@ class AdbInterface: |
"""Direct all future commands to Android target with the given serial.""" |
self._target_arg = "-s %s" % serial |
- def SendCommand(self, command_string, timeout_time=20, retry_count=3): |
+ def SendCommand(self, command_string, timeout_time=20, retry_count=0): |
"""Send a command via adb. |
Args: |
@@ -71,7 +71,7 @@ class AdbInterface: |
return run_command.RunCommand(adb_cmd, timeout_time=timeout_time, |
retry_count=retry_count) |
- def SendShellCommand(self, cmd, timeout_time=20, retry_count=3): |
+ def SendShellCommand(self, cmd, timeout_time=20, retry_count=0): |
"""Send a adb shell command. |
Args: |