Commit acbead94 authored by james.wei@intel.com's avatar james.wei@intel.com

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
parent 0b7df36d
......@@ -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')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment