Merge pull request #1547 from fbai/patch-1

Update adb.js: fix typo error
This commit is contained in:
bootstraponline
2013-11-27 06:48:55 -08:00

View File

@@ -508,7 +508,7 @@ ADB.prototype.launchAVD = function(avdName, cb) {
} catch (err) {
return cb(err);
}
this.getDeviceWithRetry(120000, cb);
this.getDevicesWithRetry(120000, cb);
}.bind(this));
};