From 0ccb54c2cd82eef950f3696e672b8fbd4818e892 Mon Sep 17 00:00:00 2001 From: Russell Date: Tue, 19 Nov 2019 00:28:02 -0500 Subject: [PATCH] Update iOS simulator for tests --- multiplatform-settings-test/build.gradle.kts | 2 +- multiplatform-settings/build.gradle.kts | 2 +- sample/shared/build.gradle.kts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/multiplatform-settings-test/build.gradle.kts b/multiplatform-settings-test/build.gradle.kts index abbf31fa..ea468d35 100644 --- a/multiplatform-settings-test/build.gradle.kts +++ b/multiplatform-settings-test/build.gradle.kts @@ -142,7 +142,7 @@ task("iosTest") { val testBinaryPath = (kotlin.targets["iosSim"] as KotlinNativeTarget).binaries.getTest("DEBUG").outputFile.absolutePath exec { - commandLine("xcrun", "simctl", "spawn", "--standalone", "iPhone Xʀ", testBinaryPath) + commandLine("xcrun", "simctl", "spawn", "--standalone", "iPhone 11", testBinaryPath) } } } diff --git a/multiplatform-settings/build.gradle.kts b/multiplatform-settings/build.gradle.kts index 916b8452..65935bcf 100644 --- a/multiplatform-settings/build.gradle.kts +++ b/multiplatform-settings/build.gradle.kts @@ -146,7 +146,7 @@ task("iosTest") { val testBinaryPath = (kotlin.targets["iosSim"] as KotlinNativeTarget).binaries.getTest("DEBUG").outputFile.absolutePath exec { - commandLine("xcrun", "simctl", "spawn", "--standalone", "iPhone Xʀ", testBinaryPath) + commandLine("xcrun", "simctl", "spawn", "--standalone", "iPhone 11", testBinaryPath) } } } diff --git a/sample/shared/build.gradle.kts b/sample/shared/build.gradle.kts index e9f9ab29..7de5f188 100644 --- a/sample/shared/build.gradle.kts +++ b/sample/shared/build.gradle.kts @@ -131,7 +131,7 @@ task("iosTest") { val testBinaryPath = (kotlin.targets["ios"] as KotlinNativeTarget).binaries.getTest("DEBUG").outputFile.absolutePath exec { - commandLine("xcrun", "simctl", "spawn", "--standalone", "iPhone Xʀ", testBinaryPath) + commandLine("xcrun", "simctl", "spawn", "--standalone", "iPhone 11", testBinaryPath) } } }