diff options
author | james.wei@intel.com <james.wei@intel.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-11 10:12:52 +0000 |
---|---|---|
committer | james.wei@intel.com <james.wei@intel.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-11 10:12:52 +0000 |
commit | acbead943d7e78b929f8b74ddf81684b352dee99 (patch) | |
tree | 082b4604b2b6dc29ea16805b33cfaa3c28549086 /build | |
parent | 0b7df36d890f91898179b2a90a98c90e4c065f48 (diff) | |
download | chromium_src-acbead943d7e78b929f8b74ddf81684b352dee99.zip chromium_src-acbead943d7e78b929f8b74ddf81684b352dee99.tar.gz chromium_src-acbead943d7e78b929f8b74ddf81684b352dee99.tar.bz2 |
fix the error of emulator.py
AndroidCommand only needs two args while emulator.py pass three
BUG=
TEST=
Review URL: https://chromiumcodereview.appspot.com/10700157
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146095 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rwxr-xr-x | build/android/emulator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/android/emulator.py b/build/android/emulator.py index 18f190e..9a4e589 100755 --- a/build/android/emulator.py +++ b/build/android/emulator.py @@ -196,7 +196,7 @@ class Emulator(object): After confirming a wait-for-device can be successful, make sure it returns the right answer. """ - a = android_commands.AndroidCommands(self.device, False) + a = android_commands.AndroidCommands(self.device) seconds_waited = 0 number_of_waits = 2 # Make sure we can wfd twice adb_cmd = "adb -s %s %s" % (self.device, 'wait-for-device') |