From 45fa4becc4fafd134442d6315acd12035d909dcd Mon Sep 17 00:00:00 2001 From: Jacek Krasiukianis Date: Tue, 6 May 2025 11:30:48 +0200 Subject: [PATCH] Xcode 16.3 --- .gitlab-ci.yml | 2 +- .../ProtonMail/Services/LaunchServiceTests.swift | 2 +- ProtonMail/fastlane/Fastfile | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 020442de7..03977375e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -55,7 +55,7 @@ stages: - cd .. .macos_job: - image: team-mail:2 + image: team-mail:3 cache: - key: files: diff --git a/ProtonMail/ProtonMailTests/ProtonMail/Services/LaunchServiceTests.swift b/ProtonMail/ProtonMailTests/ProtonMail/Services/LaunchServiceTests.swift index 1923ccb33..c28e9b5eb 100644 --- a/ProtonMail/ProtonMailTests/ProtonMail/Services/LaunchServiceTests.swift +++ b/ProtonMail/ProtonMailTests/ProtonMail/Services/LaunchServiceTests.swift @@ -69,7 +69,7 @@ final class LaunchTests: XCTestCase { func testStart_whenCoreDataSetupFails_itShouldNotLoadUsers() { mockSetupCoreData.setupStub.bodyIs { _ in - throw NSError() + throw NSError(domain: "", code: 0) } setUpAppAccessGranted_and_userInUserDefaults() diff --git a/ProtonMail/fastlane/Fastfile b/ProtonMail/fastlane/Fastfile index a3a9d13fc..57806faf0 100644 --- a/ProtonMail/fastlane/Fastfile +++ b/ProtonMail/fastlane/Fastfile @@ -21,7 +21,7 @@ DEVELOPER_KEYCHAIN_PASSWORD = "TUFJTF9JT1NfQ0VSVElGSUNBVEVfS0VZQ0hBSU4=" CERTIFICATE_PATH = "Certificates.p12" APP_IDENTIFIER = "ch.protonmail.protonmail" -TEST_DEVICE = "iPhone 16 Pro (18.2)" +TEST_DEVICE = "iPhone 16 Pro (18.4)" UNIT_TEST_SCHEME = "ProtonMailTests" UI_TEST_SCHEME = "ProtonMailUITests" @@ -29,7 +29,7 @@ ENV["FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT"] = "120" def select_xcode xcodes( - version: '16.2', + version: '16.3', select_for_current_build_only: true, ) end