mirror of
https://github.com/appium/appium.git
synced 2026-02-10 03:38:49 -06:00
We don't need toLowerCas() for app argument, as it is used for passing CFBundleIdentifier, fixes #2131
This commit is contained in:
@@ -36,7 +36,7 @@ Device.prototype.setArgFromCap = function (arg, cap) {
|
||||
};
|
||||
|
||||
Device.prototype.appString = function () {
|
||||
return this.args.app ? this.args.app.toString().toLowerCase() : '';
|
||||
return this.args.app ? this.args.app.toString() : '';
|
||||
};
|
||||
|
||||
Device.prototype.configureApp = function (cb) {
|
||||
|
||||
Reference in New Issue
Block a user