Skip to content

Commit

Permalink
Update iOS simulator for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
russhwolf committed Nov 19, 2019
1 parent 72bf2d4 commit 0ccb54c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion multiplatform-settings-test/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 ", testBinaryPath)
commandLine("xcrun", "simctl", "spawn", "--standalone", "iPhone 11", testBinaryPath)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion multiplatform-settings/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 ", testBinaryPath)
commandLine("xcrun", "simctl", "spawn", "--standalone", "iPhone 11", testBinaryPath)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion sample/shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 ", testBinaryPath)
commandLine("xcrun", "simctl", "spawn", "--standalone", "iPhone 11", testBinaryPath)
}
}
}
Expand Down

0 comments on commit 0ccb54c

Please sign in to comment.