Skip to content

Commit

Permalink
Merge pull request appium#1680 from bootstraponline/keystore
Browse files Browse the repository at this point in the history
Fix checkApkKeystoreMatch argument order
  • Loading branch information
bootstraponline committed Dec 27, 2013
2 parents 0ed0ae7 + 9a13665 commit e9cce3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/devices/android/adb.js
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ ADB.prototype.checkCustomApkCert = function(apk, pkg, cb) {

this.getKeystoreMd5(keytool, md5, function(err, keystoreHash) {
if (err) return cb(err);
this.checkApkKeystoreMatch(keytool, md5, keystoreHash, apk, pkg, cb);
this.checkApkKeystoreMatch(keytool, md5, keystoreHash, pkg, apk, cb);
}.bind(this));
};

Expand Down

0 comments on commit e9cce3f

Please sign in to comment.