From 60b1acb3a4f2448b1654bda4b8059ba10461de83 Mon Sep 17 00:00:00 2001 From: Carlos Sessa Date: Tue, 29 Jan 2019 09:45:37 -0600 Subject: [PATCH] Issue #480: Bug: iOS is hardcoding locale and orientation --- test_runner/src/main/kotlin/ftl/gc/GcIosMatrix.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_runner/src/main/kotlin/ftl/gc/GcIosMatrix.kt b/test_runner/src/main/kotlin/ftl/gc/GcIosMatrix.kt index 729bd33e14..966b22d981 100644 --- a/test_runner/src/main/kotlin/ftl/gc/GcIosMatrix.kt +++ b/test_runner/src/main/kotlin/ftl/gc/GcIosMatrix.kt @@ -11,8 +11,8 @@ object GcIosMatrix { IosDevice() .setIosModelId(it.model) .setIosVersionId(it.version) - .setLocale("en_US") // FTL iOS doesn't currently support other locales or orientations - .setOrientation("portrait") + .setLocale(it.locale) + .setOrientation(it.orientation) } ) }