Update adb.js: fix typo error

line 511

this.getDeviceWithRetry(120000, cb);
changed to
this.getDevicesWithRetry(120000, cb);
This commit is contained in:
Fan Bai
2013-11-27 18:46:12 +08:00
parent 6eeea18fcb
commit d7a39ad2bc
+1 -1
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));
};