Skip to content

Commit d0af0f6

Browse files
committed
Fix Fastlane test devices
Launching iPhone 5s simulator is unreliable and often causes tests to fail. Upgraded iOS 9 device to iPhone 6s
1 parent 59c5223 commit d0af0f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fastlane/Fastfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ platform :ios do
1313
devices = ["iPhone XR (~> 12)"]
1414
devices << "iPhone X (~> 11)" if !Helper.is_ci?
1515
devices << "iPhone 7 (~> 10)" if !Helper.is_ci?
16-
devices << "iPhone 5s (~> 9)" if !Helper.is_ci?
16+
devices << "iPhone 6s (~> 9)" if !Helper.is_ci?
1717

1818
desc "Runs the following lanes:\n- test\n- pod_lint\n- carthage_lint"
1919
lane :ci do

0 commit comments

Comments
 (0)