mirror of
https://github.com/appium/appium.git
synced 2026-02-13 21:39:49 -06:00
Merge pull request #1544 from curtissiemens/master
Fixing iosDeviceString for iPad 64-bit case (missing parentheses).
This commit is contained in:
@@ -572,7 +572,7 @@ IOS.prototype.getDeviceString = function() {
|
||||
iosDeviceString += " (3.5-inch)";
|
||||
}
|
||||
} else {
|
||||
iosDeviceString += is64bit ? " 64-bit" : "";
|
||||
iosDeviceString += is64bit ? " (64-bit)" : "";
|
||||
}
|
||||
}
|
||||
return iosDeviceString;
|
||||
|
||||
Reference in New Issue
Block a user