mirror of
https://github.com/appium/appium.git
synced 2026-02-13 05:19:47 -06:00
Merge pull request #1537 from curtissiemens/master
Fix 4-inch 64-bit device string building (was missing dash in 64 inch).
This commit is contained in:
@@ -555,7 +555,7 @@ IOS.prototype.getDeviceString = function() {
|
||||
iosDeviceString += isRetina ? " Retina" : "";
|
||||
if (isiPhone) {
|
||||
if (isRetina && isTall) {
|
||||
iosDeviceString += is64bit ? " (4-inch 64 bit)" : " (4-inch)";
|
||||
iosDeviceString += is64bit ? " (4-inch 64-bit)" : " (4-inch)";
|
||||
} else {
|
||||
iosDeviceString += " (3.5-inch)";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user