diff --git a/Stripe/StripeiOSTests/AfterpayPriceBreakdownViewSnapshotTests.swift b/Stripe/StripeiOSTests/AfterpayPriceBreakdownViewSnapshotTests.swift index e5428d3616fa..a66b7bbee778 100644 --- a/Stripe/StripeiOSTests/AfterpayPriceBreakdownViewSnapshotTests.swift +++ b/Stripe/StripeiOSTests/AfterpayPriceBreakdownViewSnapshotTests.swift @@ -34,15 +34,6 @@ class AfterpayPriceBreakdownViewSnapshotTests: STPSnapshotTestCase { return containingView } - func testClearpayInMultiRow() { - NSLocale.stp_withLocale(as: NSLocale(localeIdentifier: "en_GB")) { [self] in - let priceBreakdownView = AfterpayPriceBreakdownView(currency: "gbp") - let containingView = embedInRenderableView(priceBreakdownView, width: 320, height: 50) - - STPSnapshotVerifyView(containingView) - } - } - func testAfterpayInSingleRow() { let priceBreakdownView = AfterpayPriceBreakdownView(currency: "eur") let containingView = embedInRenderableView(priceBreakdownView, width: 500, height: 30) diff --git a/Stripe/StripeiOSTests/NSDictionary+StripeTest.swift b/Stripe/StripeiOSTests/NSDictionary+StripeTest.swift index 8428703324bb..dc7d72fc048b 100644 --- a/Stripe/StripeiOSTests/NSDictionary+StripeTest.swift +++ b/Stripe/StripeiOSTests/NSDictionary+StripeTest.swift @@ -248,7 +248,11 @@ class Dictionary_StripeTest: XCTestCase { "b": "not a url", ] as [AnyHashable: Any] XCTAssertEqual(dict.stp_url(forKey: "a"), URL(string: "https://example.com")) - XCTAssertNil(dict.stp_url(forKey: "b")) + if #available(iOS 17.0, *) { // In iOS 17 or later, instead of returning `nil` this will be a valid but escaped URL. + XCTAssertEqual(dict.stp_url(forKey: "b"), URL(string: "not%20a%20url")) + } else { + XCTAssertNil(dict.stp_url(forKey: "b")) + } XCTAssertNil(dict.stp_url(forKey: "c")) } } diff --git a/Stripe/StripeiOSTests/NSLocale+STPSwizzling.swift b/Stripe/StripeiOSTests/NSLocale+STPSwizzling.swift deleted file mode 100644 index bff5b323f306..000000000000 --- a/Stripe/StripeiOSTests/NSLocale+STPSwizzling.swift +++ /dev/null @@ -1,96 +0,0 @@ -// Converted to Swift 5.8.1 by Swiftify v5.8.28463 - https://swiftify.com/ -import Foundation -import XCTest - -@testable@_spi(STP) import Stripe -@testable@_spi(STP) import StripeCore -@testable@_spi(STP) import StripePayments -@testable@_spi(STP) import StripePaymentSheet -@testable@_spi(STP) import StripePaymentsUI -// -// NSLocale+STPSwizzling.swift -// StripeiOS Tests -// -// Created by Cameron Sabol on 7/17/18. -// Copyright © 2018 Stripe, Inc. All rights reserved. -// - -import ObjectiveC - -class STPLocaleSwizzling { - static var stpLocaleOverride: NSLocale? - static var hasSwizzled: Bool = false - -} - -extension NSLocale { - class func swizzleIfNeeded() { - if !STPLocaleSwizzling.hasSwizzled { - self.stp_swizzleClassMethod(#selector(getter: current), withReplacement: #selector(stp_current)) - self.stp_swizzleClassMethod(#selector(getter: autoupdatingCurrent), withReplacement: #selector(stp_autoUpdatingCurrent)) - self.stp_swizzleClassMethod(#selector(getter: system), withReplacement: #selector(stp_system)) - STPLocaleSwizzling.hasSwizzled = true - } - } - - class func stp_withLocale(as locale: NSLocale?, perform block: @escaping () -> Void) { - swizzleIfNeeded() - let currentLocale = NSLocale.current as NSLocale - self.stp_setCurrentLocale(locale) - block() - self.stp_resetCurrentLocale() - assert((currentLocale as Locale == NSLocale.current), "Failed to reset locale.") - } - - class func stp_setCurrentLocale(_ locale: NSLocale?) { - swizzleIfNeeded() - STPLocaleSwizzling.stpLocaleOverride = locale - } - - class func stp_resetCurrentLocale() { - swizzleIfNeeded() - self.stp_setCurrentLocale(nil) - } - - @objc class func stp_current() -> NSLocale { - return STPLocaleSwizzling.stpLocaleOverride ?? self.stp_current() - } - - @objc class func stp_autoUpdatingCurrent() -> NSLocale { - return STPLocaleSwizzling.stpLocaleOverride ?? self.stp_autoUpdatingCurrent() - } - - @objc class func stp_system() -> NSLocale { - return STPLocaleSwizzling.stpLocaleOverride ?? self.stp_system() - } -} - -extension NSObject { - class func stp_swizzleClassMethod(_ original: Selector, withReplacement replacement: Selector) { - let `class`: AnyClass? = object_getClass(self) - let originalMethod = class_getClassMethod(self, original) - let replacementMethod = class_getClassMethod(self, replacement) - - var addedMethod = false - if let replacementMethod { - addedMethod = class_addMethod( - `class`, - original, - method_getImplementation(replacementMethod), - method_getTypeEncoding(replacementMethod)) - } - if addedMethod { - if let originalMethod { - class_replaceMethod( - `class`, - replacement, - method_getImplementation(originalMethod), - method_getTypeEncoding(originalMethod)) - } - } else { - if let originalMethod, let replacementMethod { - method_exchangeImplementations(originalMethod, replacementMethod) - } - } - } -} diff --git a/Stripe/StripeiOSTests/STPCardFormViewTests.swift b/Stripe/StripeiOSTests/STPCardFormViewTests.swift index da538b7c5356..cc2a5f574d7c 100644 --- a/Stripe/StripeiOSTests/STPCardFormViewTests.swift +++ b/Stripe/StripeiOSTests/STPCardFormViewTests.swift @@ -72,48 +72,25 @@ class STPCardFormViewTests: XCTestCase { } } - func testHidingPostalCodeOnInit() { - NSLocale.stp_withLocale(as: NSLocale(localeIdentifier: "zh_Hans_HK")) { - let cardForm = STPCardFormView() - XCTAssertTrue(cardForm.postalCodeField.isHidden) - } - } - - func testHidingPostalUPECodeOnInit() { - NSLocale.stp_withLocale(as: NSLocale(localeIdentifier: "zh_Hans_HK")) { - let cardForm = STPCardFormView( - billingAddressCollection: .automatic, - style: .standard, - postalCodeRequirement: .upe, - prefillDetails: nil - ) - XCTAssertTrue(cardForm.postalCodeField.isHidden) - } - } - func testNotHidingPostalUPECodeOnInit() { - NSLocale.stp_withLocale(as: NSLocale(localeIdentifier: "en_US")) { - let cardForm = STPCardFormView( - billingAddressCollection: .automatic, - style: .standard, - postalCodeRequirement: .upe, - prefillDetails: nil - ) - XCTAssertFalse(cardForm.postalCodeField.isHidden) - } + let cardForm = STPCardFormView( + billingAddressCollection: .automatic, + style: .standard, + postalCodeRequirement: .upe, + prefillDetails: nil + ) + XCTAssertFalse(cardForm.postalCodeField.isHidden) } func testPanLockedOnInit() { - NSLocale.stp_withLocale(as: NSLocale(localeIdentifier: "en_US")) { - let cardForm = STPCardFormView( - billingAddressCollection: .automatic, - style: .standard, - postalCodeRequirement: .upe, - prefillDetails: nil, - inputMode: .panLocked - ) - XCTAssertFalse(cardForm.numberField.isUserInteractionEnabled) - } + let cardForm = STPCardFormView( + billingAddressCollection: .automatic, + style: .standard, + postalCodeRequirement: .upe, + prefillDetails: nil, + inputMode: .panLocked + ) + XCTAssertFalse(cardForm.numberField.isUserInteractionEnabled) } func testPrefilledOnInit() { @@ -123,20 +100,18 @@ class STPCardFormViewTests: XCTestCase { expiryYear: 25, cardBrand: .amex ) - NSLocale.stp_withLocale(as: NSLocale(localeIdentifier: "en_US")) { - let cardForm = STPCardFormView( - billingAddressCollection: .automatic, - style: .standard, - postalCodeRequirement: .upe, - prefillDetails: prefillDeatils, - inputMode: .panLocked - ) + let cardForm = STPCardFormView( + billingAddressCollection: .automatic, + style: .standard, + postalCodeRequirement: .upe, + prefillDetails: prefillDeatils, + inputMode: .panLocked + ) - XCTAssertEqual(cardForm.numberField.text, prefillDeatils.formattedLast4) - XCTAssertEqual(cardForm.numberField.cardBrandState.brand, prefillDeatils.cardBrand) - XCTAssertEqual(cardForm.expiryField.text, prefillDeatils.formattedExpiry) - XCTAssertEqual(cardForm.cvcField.cardBrand, prefillDeatils.cardBrand) - } + XCTAssertEqual(cardForm.numberField.text, prefillDeatils.formattedLast4) + XCTAssertEqual(cardForm.numberField.cardBrandState.brand, prefillDeatils.cardBrand) + XCTAssertEqual(cardForm.expiryField.text, prefillDeatils.formattedExpiry) + XCTAssertEqual(cardForm.cvcField.cardBrand, prefillDeatils.cardBrand) } func testCBCWithPreferredNetwork() { diff --git a/Stripe/StripeiOSTests/STPIntentActionTest.swift b/Stripe/StripeiOSTests/STPIntentActionTest.swift index 4aa2b028b6b7..9dd9ada762f6 100644 --- a/Stripe/StripeiOSTests/STPIntentActionTest.swift +++ b/Stripe/StripeiOSTests/STPIntentActionTest.swift @@ -40,7 +40,7 @@ class STPIntentActionTest: XCTestCase { [ "type": "redirect_to_url", "redirect_to_url": [ - "url": "not a url" + "url": "" ], ]) XCTAssertNotNil(badURL) @@ -72,7 +72,7 @@ class STPIntentActionTest: XCTestCase { "type": "redirect_to_url", "redirect_to_url": [ "url": "https://stripe.com/", - "return_url": "not a url", + "return_url": "", ], ]) XCTAssertNotNil(badReturnURL) diff --git a/StripeCore/StripeCoreTestUtils/STPSnapshotTestCase.swift b/StripeCore/StripeCoreTestUtils/STPSnapshotTestCase.swift index 34ca7d4696d2..1ae7390a50a1 100644 --- a/StripeCore/StripeCoreTestUtils/STPSnapshotTestCase.swift +++ b/StripeCore/StripeCoreTestUtils/STPSnapshotTestCase.swift @@ -11,7 +11,7 @@ import iOSSnapshotTestCase let TEST_DEVICE_MODEL = "iPhone13,1" // iPhone 12 mini let TEST_DEVICE_OS_VERSION = "16.4" -let TEST_DEVICE_OS_VERSION_26_1 = "26.1" +let TEST_DEVICE_OS_VERSION_26_2 = "26.2" open class STPSnapshotTestCase: FBSnapshotTestCase { @@ -20,16 +20,16 @@ open class STPSnapshotTestCase: FBSnapshotTestCase { let deviceModel = ProcessInfo.processInfo.environment["SIMULATOR_MODEL_IDENTIFIER"]! recordMode = ProcessInfo.processInfo.environment["STP_RECORD_SNAPSHOTS"] != nil guard deviceModel == TEST_DEVICE_MODEL, - [TEST_DEVICE_OS_VERSION, TEST_DEVICE_OS_VERSION_26_1].contains(UIDevice.current.systemVersion) + [TEST_DEVICE_OS_VERSION, TEST_DEVICE_OS_VERSION_26_2].contains(UIDevice.current.systemVersion) else { continueAfterFailure = false - XCTFail("You must run snapshot tests on \(TEST_DEVICE_MODEL) running \(TEST_DEVICE_OS_VERSION) or \(TEST_DEVICE_OS_VERSION_26_1). You are running these tests on a \(deviceModel) on \(UIDevice.current.systemVersion).") + XCTFail("You must run snapshot tests on \(TEST_DEVICE_MODEL) running \(TEST_DEVICE_OS_VERSION) or \(TEST_DEVICE_OS_VERSION_26_2). You are running these tests on a \(deviceModel) on \(UIDevice.current.systemVersion).") return } } var isIOS26_1: Bool { - let isiOS26_1 = UIDevice.current.systemVersion == TEST_DEVICE_OS_VERSION_26_1 + let isiOS26_1 = UIDevice.current.systemVersion == TEST_DEVICE_OS_VERSION_26_2 #if compiler(>=6.2.1) let isXcode26_1 = true #else diff --git a/Tests/ReferenceImages_64/StripeIdentityTests.BiometricConsentViewControllerSnapshotTest/testViewIsConfiguredFromAPIAndReturnError_@3x.png b/Tests/ReferenceImages_64/StripeIdentityTests.BiometricConsentViewControllerSnapshotTest/testViewIsConfiguredFromAPIAndReturnError_@3x.png index 627ac9a00203..d6f6b2fd68af 100644 Binary files a/Tests/ReferenceImages_64/StripeIdentityTests.BiometricConsentViewControllerSnapshotTest/testViewIsConfiguredFromAPIAndReturnError_@3x.png and b/Tests/ReferenceImages_64/StripeIdentityTests.BiometricConsentViewControllerSnapshotTest/testViewIsConfiguredFromAPIAndReturnError_@3x.png differ diff --git a/Tests/ReferenceImages_64/StripeIdentityTests.BiometricConsentViewControllerSnapshotTest/testViewIsConfiguredFromAPINoConsentHeaderAndReturnError_@3x.png b/Tests/ReferenceImages_64/StripeIdentityTests.BiometricConsentViewControllerSnapshotTest/testViewIsConfiguredFromAPINoConsentHeaderAndReturnError_@3x.png index 627ac9a00203..d6f6b2fd68af 100644 Binary files a/Tests/ReferenceImages_64/StripeIdentityTests.BiometricConsentViewControllerSnapshotTest/testViewIsConfiguredFromAPINoConsentHeaderAndReturnError_@3x.png and b/Tests/ReferenceImages_64/StripeIdentityTests.BiometricConsentViewControllerSnapshotTest/testViewIsConfiguredFromAPINoConsentHeaderAndReturnError_@3x.png differ diff --git a/Tests/ReferenceImages_64/StripeIdentityTests.DebugViewControllerSnapshotTest/testViewIsConfigured@3x.png b/Tests/ReferenceImages_64/StripeIdentityTests.DebugViewControllerSnapshotTest/testViewIsConfigured@3x.png index 38585dc40093..7ed059c0a295 100644 Binary files a/Tests/ReferenceImages_64/StripeIdentityTests.DebugViewControllerSnapshotTest/testViewIsConfigured@3x.png and b/Tests/ReferenceImages_64/StripeIdentityTests.DebugViewControllerSnapshotTest/testViewIsConfigured@3x.png differ diff --git a/Tests/ReferenceImages_64/StripeIdentityTests.ErrorViewControllerSnapshotTest/testWithContinueButton@3x.png b/Tests/ReferenceImages_64/StripeIdentityTests.ErrorViewControllerSnapshotTest/testWithContinueButton@3x.png index e3bdb9c04eb4..e062bcaf0a54 100644 Binary files a/Tests/ReferenceImages_64/StripeIdentityTests.ErrorViewControllerSnapshotTest/testWithContinueButton@3x.png and b/Tests/ReferenceImages_64/StripeIdentityTests.ErrorViewControllerSnapshotTest/testWithContinueButton@3x.png differ diff --git a/Tests/ReferenceImages_64/StripeIdentityTests.ErrorViewControllerSnapshotTest/testWithoutContinueButton@3x.png b/Tests/ReferenceImages_64/StripeIdentityTests.ErrorViewControllerSnapshotTest/testWithoutContinueButton@3x.png index ec0ce7cf66f6..e782951a9478 100644 Binary files a/Tests/ReferenceImages_64/StripeIdentityTests.ErrorViewControllerSnapshotTest/testWithoutContinueButton@3x.png and b/Tests/ReferenceImages_64/StripeIdentityTests.ErrorViewControllerSnapshotTest/testWithoutContinueButton@3x.png differ diff --git a/Tests/ReferenceImages_64/StripeIdentityTests.IndividualViewControllerSnapshotTest/testViewIsConfiguredFromAPIAddr@3x.png b/Tests/ReferenceImages_64/StripeIdentityTests.IndividualViewControllerSnapshotTest/testViewIsConfiguredFromAPIAddr@3x.png index 343e80e5f32f..0bc3aa91640a 100644 Binary files a/Tests/ReferenceImages_64/StripeIdentityTests.IndividualViewControllerSnapshotTest/testViewIsConfiguredFromAPIAddr@3x.png and b/Tests/ReferenceImages_64/StripeIdentityTests.IndividualViewControllerSnapshotTest/testViewIsConfiguredFromAPIAddr@3x.png differ diff --git a/Tests/ReferenceImages_64/StripeIdentityTests.IndividualViewControllerSnapshotTest/testViewIsConfiguredFromAPIId@3x.png b/Tests/ReferenceImages_64/StripeIdentityTests.IndividualViewControllerSnapshotTest/testViewIsConfiguredFromAPIId@3x.png index 7711c3fcbe76..acdb4f7d2b69 100644 Binary files a/Tests/ReferenceImages_64/StripeIdentityTests.IndividualViewControllerSnapshotTest/testViewIsConfiguredFromAPIId@3x.png and b/Tests/ReferenceImages_64/StripeIdentityTests.IndividualViewControllerSnapshotTest/testViewIsConfiguredFromAPIId@3x.png differ diff --git a/Tests/ReferenceImages_64/StripeIdentityTests.IndividualViewControllerSnapshotTest/testViewIsConfiguredFromAPIIdAndAddr@3x.png b/Tests/ReferenceImages_64/StripeIdentityTests.IndividualViewControllerSnapshotTest/testViewIsConfiguredFromAPIIdAndAddr@3x.png index e4231d664e6e..fb5e05e4ce94 100644 Binary files a/Tests/ReferenceImages_64/StripeIdentityTests.IndividualViewControllerSnapshotTest/testViewIsConfiguredFromAPIIdAndAddr@3x.png and b/Tests/ReferenceImages_64/StripeIdentityTests.IndividualViewControllerSnapshotTest/testViewIsConfiguredFromAPIIdAndAddr@3x.png differ diff --git a/Tests/ReferenceImages_64/StripeIdentityTests.IndividualViewControllerSnapshotTest/testViewIsConfiguredFromAPIPhone@3x.png b/Tests/ReferenceImages_64/StripeIdentityTests.IndividualViewControllerSnapshotTest/testViewIsConfiguredFromAPIPhone@3x.png index 70cf3d5ed72f..1286f7430676 100644 Binary files a/Tests/ReferenceImages_64/StripeIdentityTests.IndividualViewControllerSnapshotTest/testViewIsConfiguredFromAPIPhone@3x.png and b/Tests/ReferenceImages_64/StripeIdentityTests.IndividualViewControllerSnapshotTest/testViewIsConfiguredFromAPIPhone@3x.png differ diff --git a/Tests/ReferenceImages_64/StripeIdentityTests.IndividualWelcomeViewControllerSnapshotTest/testViewIsConfiguredFromAPIAndReturnError_@3x.png b/Tests/ReferenceImages_64/StripeIdentityTests.IndividualWelcomeViewControllerSnapshotTest/testViewIsConfiguredFromAPIAndReturnError_@3x.png index 687b03be6c5c..7c3fec33efca 100644 Binary files a/Tests/ReferenceImages_64/StripeIdentityTests.IndividualWelcomeViewControllerSnapshotTest/testViewIsConfiguredFromAPIAndReturnError_@3x.png and b/Tests/ReferenceImages_64/StripeIdentityTests.IndividualWelcomeViewControllerSnapshotTest/testViewIsConfiguredFromAPIAndReturnError_@3x.png differ diff --git a/Tests/ReferenceImages_64/StripeIdentityTests.PhoneOtpViewControllerSnapshotTest/testErrorOTP@3x.png b/Tests/ReferenceImages_64/StripeIdentityTests.PhoneOtpViewControllerSnapshotTest/testErrorOTP@3x.png index 6e7fe05f167b..4a6c164a98b3 100644 Binary files a/Tests/ReferenceImages_64/StripeIdentityTests.PhoneOtpViewControllerSnapshotTest/testErrorOTP@3x.png and b/Tests/ReferenceImages_64/StripeIdentityTests.PhoneOtpViewControllerSnapshotTest/testErrorOTP@3x.png differ diff --git a/Tests/ReferenceImages_64/StripeIdentityTests.PhoneOtpViewControllerSnapshotTest/testInputtingOTP@3x.png b/Tests/ReferenceImages_64/StripeIdentityTests.PhoneOtpViewControllerSnapshotTest/testInputtingOTP@3x.png index 05c57771a434..e948e69464c4 100644 Binary files a/Tests/ReferenceImages_64/StripeIdentityTests.PhoneOtpViewControllerSnapshotTest/testInputtingOTP@3x.png and b/Tests/ReferenceImages_64/StripeIdentityTests.PhoneOtpViewControllerSnapshotTest/testInputtingOTP@3x.png differ diff --git a/Tests/ReferenceImages_64/StripeIdentityTests.PhoneOtpViewControllerSnapshotTest/testRequestingCannotVerify@3x.png b/Tests/ReferenceImages_64/StripeIdentityTests.PhoneOtpViewControllerSnapshotTest/testRequestingCannotVerify@3x.png index 30c381add3b2..2ebb39d649e9 100644 Binary files a/Tests/ReferenceImages_64/StripeIdentityTests.PhoneOtpViewControllerSnapshotTest/testRequestingCannotVerify@3x.png and b/Tests/ReferenceImages_64/StripeIdentityTests.PhoneOtpViewControllerSnapshotTest/testRequestingCannotVerify@3x.png differ diff --git a/Tests/ReferenceImages_64/StripeIdentityTests.PhoneOtpViewControllerSnapshotTest/testRequestingOTP@3x.png b/Tests/ReferenceImages_64/StripeIdentityTests.PhoneOtpViewControllerSnapshotTest/testRequestingOTP@3x.png index 8c673d64206e..09336237759d 100644 Binary files a/Tests/ReferenceImages_64/StripeIdentityTests.PhoneOtpViewControllerSnapshotTest/testRequestingOTP@3x.png and b/Tests/ReferenceImages_64/StripeIdentityTests.PhoneOtpViewControllerSnapshotTest/testRequestingOTP@3x.png differ diff --git a/Tests/ReferenceImages_64/StripeIdentityTests.PhoneOtpViewControllerSnapshotTest/testSubmittingOTP@3x.png b/Tests/ReferenceImages_64/StripeIdentityTests.PhoneOtpViewControllerSnapshotTest/testSubmittingOTP@3x.png index a47523774476..5d2509818a86 100644 Binary files a/Tests/ReferenceImages_64/StripeIdentityTests.PhoneOtpViewControllerSnapshotTest/testSubmittingOTP@3x.png and b/Tests/ReferenceImages_64/StripeIdentityTests.PhoneOtpViewControllerSnapshotTest/testSubmittingOTP@3x.png differ diff --git a/Tests/ReferenceImages_64/StripeIdentityTests.SuccessViewControllerSnapshotTest/testViewIsConfiguredFromAPI@3x.png b/Tests/ReferenceImages_64/StripeIdentityTests.SuccessViewControllerSnapshotTest/testViewIsConfiguredFromAPI@3x.png index 524421aa48c4..56f5a63284bc 100644 Binary files a/Tests/ReferenceImages_64/StripeIdentityTests.SuccessViewControllerSnapshotTest/testViewIsConfiguredFromAPI@3x.png and b/Tests/ReferenceImages_64/StripeIdentityTests.SuccessViewControllerSnapshotTest/testViewIsConfiguredFromAPI@3x.png differ diff --git a/Tests/ReferenceImages_64/StripeIdentityTests.SuccessViewControllerSnapshotTest/testViewIsConfiguredFromAPI_change_tint@3x.png b/Tests/ReferenceImages_64/StripeIdentityTests.SuccessViewControllerSnapshotTest/testViewIsConfiguredFromAPI_change_tint@3x.png index 7e942df65bb5..0e4d1bf6bb98 100644 Binary files a/Tests/ReferenceImages_64/StripeIdentityTests.SuccessViewControllerSnapshotTest/testViewIsConfiguredFromAPI_change_tint@3x.png and b/Tests/ReferenceImages_64/StripeIdentityTests.SuccessViewControllerSnapshotTest/testViewIsConfiguredFromAPI_change_tint@3x.png differ diff --git a/Tests/ReferenceImages_64/StripeIdentityTests.VerificationFlowWebViewSnapshotTests/testError@3x.png b/Tests/ReferenceImages_64/StripeIdentityTests.VerificationFlowWebViewSnapshotTests/testError@3x.png index a148b957bcf5..b129a21ec2a1 100644 Binary files a/Tests/ReferenceImages_64/StripeIdentityTests.VerificationFlowWebViewSnapshotTests/testError@3x.png and b/Tests/ReferenceImages_64/StripeIdentityTests.VerificationFlowWebViewSnapshotTests/testError@3x.png differ diff --git a/Tests/ReferenceImages_64/StripeIdentityTests.VerificationFlowWebViewSnapshotTests/testLoaded@3x.png b/Tests/ReferenceImages_64/StripeIdentityTests.VerificationFlowWebViewSnapshotTests/testLoaded@3x.png index c546c5d29836..d80198af1143 100644 Binary files a/Tests/ReferenceImages_64/StripeIdentityTests.VerificationFlowWebViewSnapshotTests/testLoaded@3x.png and b/Tests/ReferenceImages_64/StripeIdentityTests.VerificationFlowWebViewSnapshotTests/testLoaded@3x.png differ diff --git a/Tests/ReferenceImages_64/StripeIdentityTests.VerificationFlowWebViewSnapshotTests/testLoading@3x.png b/Tests/ReferenceImages_64/StripeIdentityTests.VerificationFlowWebViewSnapshotTests/testLoading@3x.png index 3bdbebeea2ed..7c7a5223c589 100644 Binary files a/Tests/ReferenceImages_64/StripeIdentityTests.VerificationFlowWebViewSnapshotTests/testLoading@3x.png and b/Tests/ReferenceImages_64/StripeIdentityTests.VerificationFlowWebViewSnapshotTests/testLoading@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerRepresentableSnapshotTest/testAddressElementViewWithCompletionHandler__address_element_default@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerRepresentableSnapshotTest/testAddressElementViewWithCompletionHandler__address_element_default@3x.png index 307e5388fa13..5ae502e8a0c1 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerRepresentableSnapshotTest/testAddressElementViewWithCompletionHandler__address_element_default@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerRepresentableSnapshotTest/testAddressElementViewWithCompletionHandler__address_element_default@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerRepresentableSnapshotTest/testAddressElementViewWithCompletionHandler__address_element_prepopulated@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerRepresentableSnapshotTest/testAddressElementViewWithCompletionHandler__address_element_prepopulated@3x.png index f7f818e3a3bf..e868dba03794 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerRepresentableSnapshotTest/testAddressElementViewWithCompletionHandler__address_element_prepopulated@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerRepresentableSnapshotTest/testAddressElementViewWithCompletionHandler__address_element_prepopulated@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController@3x.png index bb670e761fab..7e168f07e2ae 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_appearance@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_appearance@3x.png index ad6b21174555..486e97bba389 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_appearance@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_appearance@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_checkbox@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_checkbox@3x.png index 0ea6fc9f3567..f7b3e0d1688a 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_checkbox@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_checkbox@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_customText@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_customText@3x.png index 4ae87dd39df1..aae359942825 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_customText@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_customText@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_darkMode@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_darkMode@3x.png index 3a16b5f3b85a..1ff92f1b808f 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_darkMode@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_darkMode@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_defaultValues@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_defaultValues@3x.png index 156d6a9217b5..70561bc6e0f0 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_defaultValues@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_defaultValues@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_shippingEqualsBillingCheckbox@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_shippingEqualsBillingCheckbox@3x.png index 43d075994b1a..e759d19d8ef8 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_shippingEqualsBillingCheckbox@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_shippingEqualsBillingCheckbox@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_shippingEqualsBillingCheckbox_withShippingAddress@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_shippingEqualsBillingCheckbox_withShippingAddress@3x.png index b553280fb458..397139304977 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_shippingEqualsBillingCheckbox_withShippingAddress@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.AddressViewControllerSnapshotTests/testShippingAddressViewController_shippingEqualsBillingCheckbox_withShippingAddress@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.BacsDDMandateViewSnapshotTests/testBacsDDMandateView@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.BacsDDMandateViewSnapshotTests/testBacsDDMandateView@3x.png index a310e2de0f45..e7429452a258 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.BacsDDMandateViewSnapshotTests/testBacsDDMandateView@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.BacsDDMandateViewSnapshotTests/testBacsDDMandateView@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testCard_SEPADebit@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testCard_SEPADebit@3x.png index d2ca26458770..e60c810e5f82 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testCard_SEPADebit@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testCard_SEPADebit@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testCard_SEPADebit_dark@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testCard_SEPADebit_dark@3x.png index fca6201e2625..251f0c74e99c 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testCard_SEPADebit_dark@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testCard_SEPADebit_dark@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testCard_USBankAccount@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testCard_USBankAccount@3x.png index 8a37c8cfef4c..fa3171158374 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testCard_USBankAccount@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testCard_USBankAccount@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testCard_USBankAccount_dark@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testCard_USBankAccount_dark@3x.png index e4b5f1ccb046..6014632e9d4d 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testCard_USBankAccount_dark@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testCard_USBankAccount_dark@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testNoSavedPMsDarkMode@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testNoSavedPMsDarkMode@3x.png index 9c73250254ef..d357293d354a 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testNoSavedPMsDarkMode@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testNoSavedPMsDarkMode@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_bdcc_0000@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_bdcc_0000@3x.png index 78facba2910f..2e8bc848c736 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_bdcc_0000@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_bdcc_0000@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_bdcc_0002@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_bdcc_0002@3x.png index 78facba2910f..2e8bc848c736 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_bdcc_0002@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_bdcc_0002@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_bdcc_0200@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_bdcc_0200@3x.png index ea7ac1d79b9e..f97451b89e80 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_bdcc_0200@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_bdcc_0200@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_bdcc_0202@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_bdcc_0202@3x.png index ea7ac1d79b9e..f97451b89e80 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_bdcc_0202@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_bdcc_0202@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_bdcc_1111@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_bdcc_1111@3x.png index 706c0d9bec81..5d6105b3e9d3 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_bdcc_1111@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_bdcc_1111@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_card@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_card@3x.png index 0ef29ce64876..e8fa9f5a776c 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_card@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_card@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_card_dark@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_card_dark@3x.png index 50a5665191b8..b7b510b7e268 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_card_dark@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_card_dark@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_only@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_only@3x.png index 78facba2910f..2e8bc848c736 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_only@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_only@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_only_dark@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_only_dark@3x.png index c28d5fac152f..ccdac1c172ea 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_only_dark@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testSEPADebit_only_dark@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testUSBankAccount_card@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testUSBankAccount_card@3x.png index 782ad590668d..fb8a6aa4a696 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testUSBankAccount_card@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testUSBankAccount_card@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testUSBankAccount_card_dark@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testUSBankAccount_card_dark@3x.png index 49bcf00e3dcc..0b5c57336c88 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testUSBankAccount_card_dark@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testUSBankAccount_card_dark@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testUSBankAccount_only_dark@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testUSBankAccount_only_dark@3x.png index cbb73b4c05b0..4fc9ab3157fa 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testUSBankAccount_only_dark@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.CustomerSheetSnapshotTests/testUSBankAccount_only_dark@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.EmbeddedFormViewControllerSnapshotTests/testDisplaysErrorAndMandate@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.EmbeddedFormViewControllerSnapshotTests/testDisplaysErrorAndMandate@3x.png index 92ab7829d138..089607a9886a 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.EmbeddedFormViewControllerSnapshotTests/testDisplaysErrorAndMandate@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.EmbeddedFormViewControllerSnapshotTests/testDisplaysErrorAndMandate@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.EmbeddedFormViewControllerSnapshotTests/testMandateView@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.EmbeddedFormViewControllerSnapshotTests/testMandateView@3x.png index 29f59a2acd1e..151e4dbb2f31 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.EmbeddedFormViewControllerSnapshotTests/testMandateView@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.EmbeddedFormViewControllerSnapshotTests/testMandateView@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.EmbeddedPaymentMethodsViewSnapshotTests/testEmbeddedPaymentMethodsView_flatWithDisclosure_customDisclosureView_info_icon@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.EmbeddedPaymentMethodsViewSnapshotTests/testEmbeddedPaymentMethodsView_flatWithDisclosure_customDisclosureView_info_icon@3x.png index 4524a4774905..e9c8cd1c01d3 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.EmbeddedPaymentMethodsViewSnapshotTests/testEmbeddedPaymentMethodsView_flatWithDisclosure_customDisclosureView_info_icon@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.EmbeddedPaymentMethodsViewSnapshotTests/testEmbeddedPaymentMethodsView_flatWithDisclosure_customDisclosureView_info_icon@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkButtonSnapshotTests/testLinkButton_bankPaymentMethodPreview_bank_payment_method@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkButtonSnapshotTests/testLinkButton_bankPaymentMethodPreview_bank_payment_method@3x.png index e4f47fd45652..6221a8db6990 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkButtonSnapshotTests/testLinkButton_bankPaymentMethodPreview_bank_payment_method@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkButtonSnapshotTests/testLinkButton_bankPaymentMethodPreview_bank_payment_method@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkButtonSnapshotTests/testLinkButton_cardPaymentMethodPreview_card_payment_method@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkButtonSnapshotTests/testLinkButton_cardPaymentMethodPreview_card_payment_method@3x.png index cd8fe646d34b..2342f8a3a128 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkButtonSnapshotTests/testLinkButton_cardPaymentMethodPreview_card_payment_method@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkButtonSnapshotTests/testLinkButton_cardPaymentMethodPreview_card_payment_method@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkButtonSnapshotTests/testLinkButton_longEmail_long_email@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkButtonSnapshotTests/testLinkButton_longEmail_long_email@3x.png index 3ecffbf5c4ee..9f2475c22151 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkButtonSnapshotTests/testLinkButton_longEmail_long_email@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkButtonSnapshotTests/testLinkButton_longEmail_long_email@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkButtonSnapshotTests/testLinkButton_noAccount_no_account@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkButtonSnapshotTests/testLinkButton_noAccount_no_account@3x.png index 0fc6a7e337f8..d9c9bb2d0fee 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkButtonSnapshotTests/testLinkButton_noAccount_no_account@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkButtonSnapshotTests/testLinkButton_noAccount_no_account@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkButtonSnapshotTests/testLinkButton_shortEmail_short_email@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkButtonSnapshotTests/testLinkButton_shortEmail_short_email@3x.png index f97bf1338dbb..25d3a4dc6304 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkButtonSnapshotTests/testLinkButton_shortEmail_short_email@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkButtonSnapshotTests/testLinkButton_shortEmail_short_email@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkInlineVerificationViewSnapshotTests/testLinkInlineVerificationView_NoPaymentMethodPreview@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkInlineVerificationViewSnapshotTests/testLinkInlineVerificationView_NoPaymentMethodPreview@3x.png index e319c234ca77..1cb81c137af2 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkInlineVerificationViewSnapshotTests/testLinkInlineVerificationView_NoPaymentMethodPreview@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkInlineVerificationViewSnapshotTests/testLinkInlineVerificationView_NoPaymentMethodPreview@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkInlineVerificationViewSnapshotTests/testLinkInlineVerificationView_WithBankPaymentMethodPreview@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkInlineVerificationViewSnapshotTests/testLinkInlineVerificationView_WithBankPaymentMethodPreview@3x.png index a56a0bb56d3e..814a46ab52dd 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkInlineVerificationViewSnapshotTests/testLinkInlineVerificationView_WithBankPaymentMethodPreview@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkInlineVerificationViewSnapshotTests/testLinkInlineVerificationView_WithBankPaymentMethodPreview@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkInlineVerificationViewSnapshotTests/testLinkInlineVerificationView_WithVisaPaymentMethodPreview@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkInlineVerificationViewSnapshotTests/testLinkInlineVerificationView_WithVisaPaymentMethodPreview@3x.png index ca702d048099..5a21303d76a0 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkInlineVerificationViewSnapshotTests/testLinkInlineVerificationView_WithVisaPaymentMethodPreview@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkInlineVerificationViewSnapshotTests/testLinkInlineVerificationView_WithVisaPaymentMethodPreview@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkPaymentMethodPickerSnapshotTests/testExpanded@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkPaymentMethodPickerSnapshotTests/testExpanded@3x.png index cc5e4cfe6c05..2fd1b8a22c69 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkPaymentMethodPickerSnapshotTests/testExpanded@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkPaymentMethodPickerSnapshotTests/testExpanded@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkPaymentMethodPickerSnapshotTests/testFirstOptionUnsupported@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkPaymentMethodPickerSnapshotTests/testFirstOptionUnsupported@3x.png index 2ca7d8dc671b..301e262cf243 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkPaymentMethodPickerSnapshotTests/testFirstOptionUnsupported@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkPaymentMethodPickerSnapshotTests/testFirstOptionUnsupported@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkPaymentMethodPickerSnapshotTests/testUnsupportedBankAccount@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkPaymentMethodPickerSnapshotTests/testUnsupportedBankAccount@3x.png index b23692d3a34c..50eb1454baea 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkPaymentMethodPickerSnapshotTests/testUnsupportedBankAccount@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkPaymentMethodPickerSnapshotTests/testUnsupportedBankAccount@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkSignUpViewControllerSnapshotTests/testEmptyViewAndReturnError_@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkSignUpViewControllerSnapshotTests/testEmptyViewAndReturnError_@3x.png index 31d50b892b58..57edebdf0bf5 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkSignUpViewControllerSnapshotTests/testEmptyViewAndReturnError_@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkSignUpViewControllerSnapshotTests/testEmptyViewAndReturnError_@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkSignUpViewControllerSnapshotTests/testWithEmailAndReturnError_@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkSignUpViewControllerSnapshotTests/testWithEmailAndReturnError_@3x.png index d3edbe7a3d72..e69feda4adc2 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkSignUpViewControllerSnapshotTests/testWithEmailAndReturnError_@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.LinkSignUpViewControllerSnapshotTests/testWithEmailAndReturnError_@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentMethodLayoutAutomatic@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentMethodLayoutAutomatic@3x.png index d1549c22433d..d332a30d2c11 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentMethodLayoutAutomatic@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentMethodLayoutAutomatic@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentMethodLayoutVertical@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentMethodLayoutVertical@3x.png index d1549c22433d..d332a30d2c11 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentMethodLayoutVertical@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentMethodLayoutVertical@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheet@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheet@3x.png index a43201da9134..57674e5512fa 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheet@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheet@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetAppearance@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetAppearance@3x.png index 3dbf737c1dc2..7d95a000b343 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetAppearance@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetAppearance@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetBorderWidth@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetBorderWidth@3x.png index 156468714ae1..69399dbece95 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetBorderWidth@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetBorderWidth@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCVCRecollection@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCVCRecollection@3x.png index 22af2f55781e..7d5be9d2fdf3 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCVCRecollection@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCVCRecollection@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetColors@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetColors@3x.png index 759b709b26ea..4154bf20aa6e 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetColors@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetColors@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCornerRadius@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCornerRadius@3x.png index 8502f33951d3..fe51e1a61559 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCornerRadius@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCornerRadius@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustom@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustom@3x.png index 727828b40f28..722e3eea4ad2 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustom@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustom@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomApplePayCta@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomApplePayCta@3x.png index 60ce515a365e..b8ad62c2f228 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomApplePayCta@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomApplePayCta@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomBorderWidth@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomBorderWidth@3x.png index c4fb268349fa..b9334394c01f 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomBorderWidth@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomBorderWidth@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomColors@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomColors@3x.png index 090d05400243..123a42b9c54d 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomColors@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomColors@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomCornerRadius@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomCornerRadius@3x.png index 1d5bb3f49d6f..49073b5ce396 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomCornerRadius@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomCornerRadius@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomDarkMode@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomDarkMode@3x.png index 43d83be740d5..81f7865f9265 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomDarkMode@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomDarkMode@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomDynamicType@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomDynamicType@3x.png index 109e7967c23d..083953d9a284 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomDynamicType@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomDynamicType@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomFont@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomFont@3x.png index 1c3bdb65b08a..b6fc8d7ebf74 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomFont@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomFont@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomFontsWithSizeScaleFactor@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomFontsWithSizeScaleFactor@3x.png index 2f8b8f10f180..06ba0ffd1888 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomFontsWithSizeScaleFactor@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomFontsWithSizeScaleFactor@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomPrimaryButtonAndApplePayCta@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomPrimaryButtonAndApplePayCta@3x.png index 4d465370d4c4..3dd2bda25b92 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomPrimaryButtonAndApplePayCta@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomPrimaryButtonAndApplePayCta@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomPrimaryButtonLabel@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomPrimaryButtonLabel@3x.png index 0f7407420cf8..e7f09c57f408 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomPrimaryButtonLabel@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomPrimaryButtonLabel@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomSectionSpacing@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomSectionSpacing@3x.png index cf8a13735b56..80ce6e4a442a 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomSectionSpacing@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomSectionSpacing@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomSheetCornerRadius@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomSheetCornerRadius@3x.png index 2405e4cbf7c3..fb08e2aa92da 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomSheetCornerRadius@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomSheetCornerRadius@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomSheetCornerRadiusLarge@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomSheetCornerRadiusLarge@3x.png index 68c703d25887..556ea23b0727 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomSheetCornerRadiusLarge@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomSheetCornerRadiusLarge@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomTextFieldInsets@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomTextFieldInsets@3x.png index cf8a13735b56..80ce6e4a442a 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomTextFieldInsets@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomTextFieldInsets@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomTextFieldInsetsAsymmetric@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomTextFieldInsetsAsymmetric@3x.png index cf8a13735b56..80ce6e4a442a 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomTextFieldInsetsAsymmetric@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomTextFieldInsetsAsymmetric@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomTextFieldInsetsWithThemedAppearance@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomTextFieldInsetsWithThemedAppearance@3x.png index 2946c0ddfa0a..d10fb79493bd 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomTextFieldInsetsWithThemedAppearance@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetCustomTextFieldInsetsWithThemedAppearance@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetDarkMode@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetDarkMode@3x.png index 0b8e2312097a..216ce934fe6b 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetDarkMode@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetDarkMode@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetDynamicType@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetDynamicType@3x.png index 96fd08d1f007..b3614f90adbf 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetDynamicType@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetDynamicType@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetFont@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetFont@3x.png index bf750ffc4c1a..7e9ef5ac2e21 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetFont@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetFont@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetIconStyleOutlined@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetIconStyleOutlined@3x.png index 74daa6718006..c7a530b070d1 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetIconStyleOutlined@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetIconStyleOutlined@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetIconStyleOutlined_vertical@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetIconStyleOutlined_vertical@3x.png index be88fcc8c4a7..5aa0c3cd3706 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetIconStyleOutlined_vertical@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetIconStyleOutlined_vertical@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetNewCustomHeadlineFont@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetNewCustomHeadlineFont@3x.png index fa981e8db3ce..5a484fbfbfc5 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetNewCustomHeadlineFont@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetNewCustomHeadlineFont@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetNilShadows@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetNilShadows@3x.png index 0fff065d7567..48c858244824 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetNilShadows@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetNilShadows@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetPrimaryButton@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetPrimaryButton@3x.png index 07918d8fdfda..36e2413e1af0 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetPrimaryButton@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetPrimaryButton@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetPrimaryButtonAppearance@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetPrimaryButtonAppearance@3x.png index 0cabde8f41b4..38e16324e3e5 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetPrimaryButtonAppearance@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetPrimaryButtonAppearance@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetShadow@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetShadow@3x.png index bb318fb1e3ce..a4f2ba720fbf 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetShadow@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetShadow@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetShadowRoundsCorners@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetShadowRoundsCorners@3x.png index ade7b318a3b7..d4b09d048c58 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetShadowRoundsCorners@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetShadowRoundsCorners@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetSingleLPM@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetSingleLPM@3x.png index f6662837f739..2ad172fe5630 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetSingleLPM@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetSingleLPM@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetSingleLPM_noApplePay@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetSingleLPM_noApplePay@3x.png index dc901b606cb8..507ffafe1b61 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetSingleLPM_noApplePay@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetSingleLPM_noApplePay@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsets@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsets@3x.png index ee63797e4f2a..ec93b6abfe17 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsets@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsets@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsAsymmetric@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsAsymmetric@3x.png index e1aea40a3b89..98aab0b5e565 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsAsymmetric@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsAsymmetric@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsDarkMode@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsDarkMode@3x.png index 96c2c6e1dbe1..fa15f5ffba69 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsDarkMode@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsDarkMode@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsDynamicType@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsDynamicType@3x.png index 20c1fbd48e33..80886e2785bc 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsDynamicType@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsDynamicType@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsLarge@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsLarge@3x.png index d92dd5676be9..7cf58b31acd3 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsLarge@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsLarge@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsWithColors@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsWithColors@3x.png index 8e490e6fbc8f..5f6179ddf4a4 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsWithColors@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsWithColors@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsWithFormInsets@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsWithFormInsets@3x.png index a8d98a5f872b..7f766a1e8743 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsWithFormInsets@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsWithFormInsets@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsWithShadow@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsWithShadow@3x.png index 20ea5ca86845..c17897f5f477 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsWithShadow@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsWithShadow@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsZero@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsZero@3x.png index 9f922dd6b968..2727768f61ec 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsZero@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetTextFieldInsetsZero@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLink@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLink@3x.png index 8baeeef2a849..4d3dce88a5f9 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLink@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLink@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLinkAppearance@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLinkAppearance@3x.png index c12cc250b12b..66b3a37b03d7 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLinkAppearance@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLinkAppearance@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLinkDarkMode@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLinkDarkMode@3x.png index b64ad39f03d8..09e9b18de4e4 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLinkDarkMode@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLinkDarkMode@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLinkExistingCustomer@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLinkExistingCustomer@3x.png index eb57c303a7b0..dd459880c3e0 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLinkExistingCustomer@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLinkExistingCustomer@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLinkHiddenBorders@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLinkHiddenBorders@3x.png index 1be703ce6142..f797ae742b01 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLinkHiddenBorders@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLinkHiddenBorders@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLinkSignupDisabled@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLinkSignupDisabled@3x.png index 2a811b1aecdf..a501819dc0af 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLinkSignupDisabled@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLinkSignupDisabled@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLink_deferredIntent@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLink_deferredIntent@3x.png index 969c7db3b585..72dfa0c583b6 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLink_deferredIntent@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheetWithLink_deferredIntent@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheet_LPM_InstantDebits_only_promotion@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheet_LPM_InstantDebits_only_promotion@3x.png index fb6aea10f184..5fca370db0de 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheet_LPM_InstantDebits_only_promotion@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheet_LPM_InstantDebits_only_promotion@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheet_deferredIntent@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheet_deferredIntent@3x.png index cc9137091027..38d5d0f86745 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheet_deferredIntent@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheet_deferredIntent@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheet_disableTerms_deferredIntent@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheet_disableTerms_deferredIntent@3x.png index d7330f2a3508..366fcbe2244d 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheet_disableTerms_deferredIntent@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetSnapshotTests/testPaymentSheet_disableTerms_deferredIntent@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testAddNewCardFormTitle@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testAddNewCardFormTitle@3x.png index f320b5c54428..097710ad6975 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testAddNewCardFormTitle@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testAddNewCardFormTitle@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testCVCRecollection@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testCVCRecollection@3x.png index d2928521a6d0..4e5eee8c26ae 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testCVCRecollection@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testCVCRecollection@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testCVCRecollection_cvc_error@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testCVCRecollection_cvc_error@3x.png index cb893d241486..6e751f6a99ef 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testCVCRecollection_cvc_error@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testCVCRecollection_cvc_error@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testCVCRecollection_non_cvc_error@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testCVCRecollection_non_cvc_error@3x.png index b2543e47d9e7..c2d922a24797 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testCVCRecollection_non_cvc_error@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testCVCRecollection_non_cvc_error@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisabledState@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisabledState@3x.png index 650c66b22a47..444805225cd2 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisabledState@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisabledState@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysError_under_form@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysError_under_form@3x.png index bf38a0e98408..d9462a85a1df 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysError_under_form@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysError_under_form@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysError_under_list@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysError_under_list@3x.png index d608bbfde7ba..1034deb469cd 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysError_under_list@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysError_under_list@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysError_under_list_with_mandate@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysError_under_list_with_mandate@3x.png index 57472cb177e3..dbfb49da7073 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysError_under_list_with_mandate@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysError_under_list_with_mandate@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysFormDirectly@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysFormDirectly@3x.png index 9f8f437782cd..31e435980532 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysFormDirectly@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysFormDirectly@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysFormDirectly_apple_pay@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysFormDirectly_apple_pay@3x.png index fd6f3acf86f2..e55b595efb8f 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysFormDirectly_apple_pay@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysFormDirectly_apple_pay@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysFormDirectly_apple_pay_and_link@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysFormDirectly_apple_pay_and_link@3x.png index ae912eaaebf4..b2389ec4976a 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysFormDirectly_apple_pay_and_link@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysFormDirectly_apple_pay_and_link@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysFormDirectly_link@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysFormDirectly_link@3x.png index 208ba45c2da3..ca8d6a02c514 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysFormDirectly_link@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysFormDirectly_link@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysFormDirectly_link_flowcontroller@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysFormDirectly_link_flowcontroller@3x.png index 47589562366e..b6eae625739d 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysFormDirectly_link_flowcontroller@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysFormDirectly_link_flowcontroller@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_card_applepay_flowcontroller@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_card_applepay_flowcontroller@3x.png index 0d1db809ae8b..3c57a5ba4fc6 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_card_applepay_flowcontroller@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_card_applepay_flowcontroller@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_card_link_applepay_flowcontroller@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_card_link_applepay_flowcontroller@3x.png index fddabe129f2e..ca52b416ccf8 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_card_link_applepay_flowcontroller@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_card_link_applepay_flowcontroller@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_multiple_pms@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_multiple_pms@3x.png index 1c6172ca9687..f27615762967 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_multiple_pms@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_multiple_pms@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm@3x.png index 29f59a2acd1e..747c161ef730 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm_apple_pay_enabled@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm_apple_pay_enabled@3x.png index 182e7671616a..ba1d6a62dc7e 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm_apple_pay_enabled@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm_apple_pay_enabled@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm_no_input@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm_no_input@3x.png index ecda7345fc07..39d5f4ba0fa9 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm_no_input@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm_no_input@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm_no_input_apple_pay_enabled@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm_no_input_apple_pay_enabled@3x.png index f55c1c528905..189a308c0256 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm_no_input_apple_pay_enabled@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm_no_input_apple_pay_enabled@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm_no_input_saved_pm@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm_no_input_saved_pm@3x.png index e9fc0bb2edaa..6d094dfa016c 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm_no_input_saved_pm@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm_no_input_saved_pm@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm_saved_pm@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm_saved_pm@3x.png index b17d1c86d0d6..530a8820468d 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm_saved_pm@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_one_non_card_pm_saved_pm@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_saved_pms@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_saved_pms@3x.png index 599b33a40388..9431c397c5d1 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_saved_pms@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysList_saved_pms@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysMandateBelowList_cashapp@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysMandateBelowList_cashapp@3x.png index 30534c746752..2aed8916a679 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysMandateBelowList_cashapp@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysMandateBelowList_cashapp@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysMandateBelowList_saved_sepa_debit@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysMandateBelowList_saved_sepa_debit@3x.png index 296aaf7fc896..cbe86b409827 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysMandateBelowList_saved_sepa_debit@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysMandateBelowList_saved_sepa_debit@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysMandateBelowList_saved_us_bank_account@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysMandateBelowList_saved_us_bank_account@3x.png index e63b6ca39532..08d31bfccc10 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysMandateBelowList_saved_us_bank_account@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testDisplaysMandateBelowList_saved_us_bank_account@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testPromoBadgeInFormTitle@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testPromoBadgeInFormTitle@3x.png index 3264c6055540..739bca19e659 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testPromoBadgeInFormTitle@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testPromoBadgeInFormTitle@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testRestoresPreviousCustomerInputWithForm@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testRestoresPreviousCustomerInputWithForm@3x.png index c2955cde473a..f4ee0dd86eb5 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testRestoresPreviousCustomerInputWithForm@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testRestoresPreviousCustomerInputWithForm@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testRestoresPreviousCustomerInputWithFormAndNoOtherPMs@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testRestoresPreviousCustomerInputWithFormAndNoOtherPMs@3x.png index a7570d80e8f2..cf4fbde4d593 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testRestoresPreviousCustomerInputWithFormAndNoOtherPMs@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testRestoresPreviousCustomerInputWithFormAndNoOtherPMs@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testRestoresPreviousCustomerInputWithInvalidType@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testRestoresPreviousCustomerInputWithInvalidType@3x.png index 5bb8867ed040..16dcca68fe33 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testRestoresPreviousCustomerInputWithInvalidType@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testRestoresPreviousCustomerInputWithInvalidType@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testRestoresPreviousCustomerInputWithoutForm@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testRestoresPreviousCustomerInputWithoutForm@3x.png index 9a6261eb1a57..453746ea4cbc 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testRestoresPreviousCustomerInputWithoutForm@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testRestoresPreviousCustomerInputWithoutForm@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testVerticalModeRowPaddingLarge@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testVerticalModeRowPaddingLarge@3x.png index e2e1f91d3113..a2dd6fe7bb0c 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testVerticalModeRowPaddingLarge@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testVerticalModeRowPaddingLarge@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testVerticalModeRowPaddingSmall@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testVerticalModeRowPaddingSmall@3x.png index 437835d48c6b..30bfed32051d 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testVerticalModeRowPaddingSmall@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.PaymentSheetVerticalViewControllerSnapshotTest/testVerticalModeRowPaddingSmall@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.UpdatePaymentMethodViewControllerSnapshotTests/test_UpdatePaymentMethodViewControllerDarkMode@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.UpdatePaymentMethodViewControllerSnapshotTests/test_UpdatePaymentMethodViewControllerDarkMode@3x.png index d615993efd29..2b91754910cf 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.UpdatePaymentMethodViewControllerSnapshotTests/test_UpdatePaymentMethodViewControllerDarkMode@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.UpdatePaymentMethodViewControllerSnapshotTests/test_UpdatePaymentMethodViewControllerDarkMode@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalPaymentMethodListViewControllerSnapshotTest/testNoSavedPM_noApplePayLink@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalPaymentMethodListViewControllerSnapshotTest/testNoSavedPM_noApplePayLink@3x.png index 3fd01ffacafe..1446aad54845 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalPaymentMethodListViewControllerSnapshotTest/testNoSavedPM_noApplePayLink@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalPaymentMethodListViewControllerSnapshotTest/testNoSavedPM_noApplePayLink@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalPaymentMethodListViewControllerSnapshotTest/testSavedCard_ApplePayLink@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalPaymentMethodListViewControllerSnapshotTest/testSavedCard_ApplePayLink@3x.png index 4879a17632b0..acbf79383e42 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalPaymentMethodListViewControllerSnapshotTest/testSavedCard_ApplePayLink@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalPaymentMethodListViewControllerSnapshotTest/testSavedCard_ApplePayLink@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalPaymentMethodListViewControllerSnapshotTest/testSavedCard_noApplePayLink@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalPaymentMethodListViewControllerSnapshotTest/testSavedCard_noApplePayLink@3x.png index 975fdd68182a..fae897a2be1e 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalPaymentMethodListViewControllerSnapshotTest/testSavedCard_noApplePayLink@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalPaymentMethodListViewControllerSnapshotTest/testSavedCard_noApplePayLink@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_Embedded_VerticalSavedPaymentMethodsViewControllerSnapshotTestsAppearance@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_Embedded_VerticalSavedPaymentMethodsViewControllerSnapshotTestsAppearance@3x.png index 9f75e2461c4a..fd6d6548bc16 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_Embedded_VerticalSavedPaymentMethodsViewControllerSnapshotTestsAppearance@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_Embedded_VerticalSavedPaymentMethodsViewControllerSnapshotTestsAppearance@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_Embedded_VerticalSavedPaymentMethodsViewControllerSnapshotTestsLightMode@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_Embedded_VerticalSavedPaymentMethodsViewControllerSnapshotTestsLightMode@3x.png index c3a17f542a8e..c151498f69db 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_Embedded_VerticalSavedPaymentMethodsViewControllerSnapshotTestsLightMode@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_Embedded_VerticalSavedPaymentMethodsViewControllerSnapshotTestsLightMode@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_Embedded_VerticalSavedPaymentOptionsViewControllerSnapshotTestsDarkMode@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_Embedded_VerticalSavedPaymentOptionsViewControllerSnapshotTestsDarkMode@3x.png index ddd05246f958..167ed9125184 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_Embedded_VerticalSavedPaymentOptionsViewControllerSnapshotTestsDarkMode@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_Embedded_VerticalSavedPaymentOptionsViewControllerSnapshotTestsDarkMode@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_VerticalSavedPaymentMethodsViewControllerSnapshotTestsAppearance@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_VerticalSavedPaymentMethodsViewControllerSnapshotTestsAppearance@3x.png index 05e15a47508d..20062aa58bed 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_VerticalSavedPaymentMethodsViewControllerSnapshotTestsAppearance@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_VerticalSavedPaymentMethodsViewControllerSnapshotTestsAppearance@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_VerticalSavedPaymentMethodsViewControllerSnapshotTestsLightMode@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_VerticalSavedPaymentMethodsViewControllerSnapshotTestsLightMode@3x.png index 837ffd349286..810cf642bde5 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_VerticalSavedPaymentMethodsViewControllerSnapshotTestsLightMode@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_VerticalSavedPaymentMethodsViewControllerSnapshotTestsLightMode@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_VerticalSavedPaymentOptionsViewControllerSnapshotTestsDarkMode@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_VerticalSavedPaymentOptionsViewControllerSnapshotTestsDarkMode@3x.png index a723da4037b4..0023c9641415 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_VerticalSavedPaymentOptionsViewControllerSnapshotTestsDarkMode@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_VerticalSavedPaymentOptionsViewControllerSnapshotTestsDarkMode@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_VerticalSavedPaymentOptionsViewControllerSnapshotTestsDefaultBadge@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_VerticalSavedPaymentOptionsViewControllerSnapshotTestsDefaultBadge@3x.png index 309b4e9df4d1..c0c3b1aba376 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_VerticalSavedPaymentOptionsViewControllerSnapshotTestsDefaultBadge@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.VerticalSavedPaymentMethodsViewControllerSnapshotTests/test_VerticalSavedPaymentOptionsViewControllerSnapshotTestsDefaultBadge@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsView@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsView@3x.png index 8d67df406411..a51ccd552130 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsView@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsView@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithCustomCornerRadius_custom_corner_radius@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithCustomCornerRadius_custom_corner_radius@3x.png index fe0a0aaa2d43..a168d5050117 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithCustomCornerRadius_custom_corner_radius@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithCustomCornerRadius_custom_corner_radius@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithCustomHeight_custom_height_60@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithCustomHeight_custom_height_60@3x.png index e975819a7dcc..eed32be1680b 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithCustomHeight_custom_height_60@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithCustomHeight_custom_height_60@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithLinkEmailTallHeight_link_with_email_tall_height@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithLinkEmailTallHeight_link_with_email_tall_height@3x.png index df8d0386e401..0578e3f282ff 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithLinkEmailTallHeight_link_with_email_tall_height@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithLinkEmailTallHeight_link_with_email_tall_height@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithLinkEmail_link_with_email@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithLinkEmail_link_with_email@3x.png index ded76a610fad..45045207b888 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithLinkEmail_link_with_email@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithLinkEmail_link_with_email@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithPrimaryButtonCornerRadius_primary_button_corner_radius@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithPrimaryButtonCornerRadius_primary_button_corner_radius@3x.png index 9850f90dab66..cc98ac8af433 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithPrimaryButtonCornerRadius_primary_button_corner_radius@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithPrimaryButtonCornerRadius_primary_button_corner_radius@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithShopPayCustomHeight_with_shoppay_custom_height_60@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithShopPayCustomHeight_with_shoppay_custom_height_60@3x.png index cebf292459e4..584522e401cd 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithShopPayCustomHeight_with_shoppay_custom_height_60@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithShopPayCustomHeight_with_shoppay_custom_height_60@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithShopPayTallHeight_with_shoppay_custom_height_80@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithShopPayTallHeight_with_shoppay_custom_height_80@3x.png index 0666b594392b..1acb1f91c44e 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithShopPayTallHeight_with_shoppay_custom_height_80@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithShopPayTallHeight_with_shoppay_custom_height_80@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithShopPay_with_shoppay@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithShopPay_with_shoppay@3x.png index 8d7c4afddd18..f3bd579604aa 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithShopPay_with_shoppay@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithShopPay_with_shoppay@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithTallHeight_custom_height_80@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithTallHeight_custom_height_80@3x.png index 9886a8988709..d76bd8069106 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithTallHeight_custom_height_80@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletButtonsViewSnapshotTests/testWalletButtonsViewWithTallHeight_custom_height_80@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletViewControllerSnapshotTests/testWithCvcRecollection@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletViewControllerSnapshotTests/testWithCvcRecollection@3x.png index 527faf8c9510..a1bd98194856 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletViewControllerSnapshotTests/testWithCvcRecollection@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletViewControllerSnapshotTests/testWithCvcRecollection@3x.png differ diff --git a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletViewControllerSnapshotTests/testWithExpiryDateRecollection@3x.png b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletViewControllerSnapshotTests/testWithExpiryDateRecollection@3x.png index 90b2c6546e5f..807afb157460 100644 Binary files a/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletViewControllerSnapshotTests/testWithExpiryDateRecollection@3x.png and b/Tests/ReferenceImages_64/StripePaymentSheetTests.WalletViewControllerSnapshotTests/testWithExpiryDateRecollection@3x.png differ diff --git a/bitrise.yml b/bitrise.yml index 42543f3ac372..6e23951084e0 100644 --- a/bitrise.yml +++ b/bitrise.yml @@ -5,7 +5,7 @@ app: envs: - FASTLANE_XCODE_LIST_TIMEOUT: "120" - DEFAULT_TEST_DEVICE: platform=iOS Simulator,name=iPhone 12 mini,OS=16.4 - - DEFAULT_TEST_DEVICE_26_1: platform=iOS Simulator,name=iPhone 12 mini,OS=26.1 + - DEFAULT_TEST_DEVICE_26_2: platform=iOS Simulator,name=iPhone 12 mini,OS=26.2 - BITRISE_PROJECT_PATH: Stripe.xcworkspace - GIT_AUTHOR_NAME: Bitrise CI - GIT_AUTHOR_EMAIL: mobile-sdk-team@stripe.com @@ -37,8 +37,11 @@ pipelines: stages: stage-trigger-run-all: workflows: - - framework-tests: {} - framework-tests-ios-26: {} + - legacy-tests-15: {} + - legacy-tests-16: {} + - legacy-tests-17: {} + - legacy-tests-18: {} - test-builds-xcode-16: {} - test-builds-xcode-26: {} - install-tests: {} @@ -72,6 +75,8 @@ stages: - ui-tests-6: {} - legacy-tests-15: {} - legacy-tests-16: {} + - legacy-tests-17: {} + - legacy-tests-18: {} - pod-lint-tests: {} - integration-all: {} stage-nightly-all: @@ -81,6 +86,8 @@ stages: - check-docs: {} - legacy-tests-15: {} - legacy-tests-16: {} + - legacy-tests-17: {} + - legacy-tests-18: {} - deploy-dry-run: {} - pod-lint-tests: {} workflows: @@ -96,9 +103,9 @@ workflows: - notify_ci meta: bitrise.io: - stack: osx-xcode-26.1.x + stack: osx-xcode-26.2.x envs: - - DEFAULT_TEST_DEVICE: $DEFAULT_TEST_DEVICE_26_1 + - DEFAULT_TEST_DEVICE: $DEFAULT_TEST_DEVICE_26_2 deploy-docs: steps: - activate-ssh-key@4: {} @@ -130,9 +137,9 @@ workflows: title: Build documentation meta: bitrise.io: - stack: osx-xcode-26.1.x + stack: osx-xcode-26.2.x envs: - - DEFAULT_TEST_DEVICE: $DEFAULT_TEST_DEVICE_26_1 + - DEFAULT_TEST_DEVICE: $DEFAULT_TEST_DEVICE_26_2 deploy-dry-run: steps: - script@1: @@ -361,17 +368,114 @@ workflows: machine_type_id: g2.mac.large framework-tests-ios-26: steps: - - script@1: + - fastlane@3: + inputs: + - lane: preflight + title: fastlane preflight + is_always_run: true + - fastlane@3: + inputs: + - lane: threeds2_tests + title: fastlane threeds2_tests + is_always_run: true + - xcode-test@4: + inputs: + - destination: $DEFAULT_TEST_DEVICE_26_2 + - test_repetition_mode: retry_on_failure + - maximum_test_repetitions: "2" + - scheme: StripeiOS + is_always_run: true + - xcode-test@4: + inputs: + - destination: $DEFAULT_TEST_DEVICE_26_2 + - test_repetition_mode: retry_on_failure + - maximum_test_repetitions: "2" + - scheme: StripePayments + is_always_run: true + - xcode-test@4: + inputs: + - destination: $DEFAULT_TEST_DEVICE_26_2 + - test_repetition_mode: retry_on_failure + - maximum_test_repetitions: "2" + - scheme: StripePaymentsUI + is_always_run: true + - xcode-test@4: + inputs: + - destination: $DEFAULT_TEST_DEVICE_26_2 + - test_repetition_mode: retry_on_failure + - maximum_test_repetitions: "2" + - scheme: StripePaymentSheet + is_always_run: true + - xcode-test@4: + inputs: + - destination: $DEFAULT_TEST_DEVICE_26_2 + - test_repetition_mode: retry_on_failure + - maximum_test_repetitions: "2" + - scheme: StripeCameraCore + is_always_run: true + - xcode-test@4: + inputs: + - destination: $DEFAULT_TEST_DEVICE_26_2 + - test_repetition_mode: retry_on_failure + - maximum_test_repetitions: "2" + - scheme: StripeCore + is_always_run: true + - xcode-test@4: inputs: - - content: | - ruby ci_scripts/generate_ios26_testplan.rb - title: Generate iOS 26 test plan + - destination: $DEFAULT_TEST_DEVICE_26_2 + - test_repetition_mode: retry_on_failure + - maximum_test_repetitions: "2" + - scheme: StripeConnect + is_always_run: true + - xcode-test@4: + inputs: + - destination: $DEFAULT_TEST_DEVICE_26_2 + - test_repetition_mode: retry_on_failure + - maximum_test_repetitions: "2" + - scheme: StripeIdentity + is_always_run: true - xcode-test@4: inputs: - - destination: $DEFAULT_TEST_DEVICE_26_1 + - destination: $DEFAULT_TEST_DEVICE_26_2 - test_repetition_mode: retry_on_failure - maximum_test_repetitions: "2" - - scheme: AllStripeFrameworks-iOS26 + - scheme: StripeIssuing + is_always_run: true + - xcode-test@4: + inputs: + - destination: $DEFAULT_TEST_DEVICE_26_2 + - test_repetition_mode: retry_on_failure + - maximum_test_repetitions: "2" + - scheme: StripeFinancialConnections + is_always_run: true + - xcode-test@4: + inputs: + - destination: $DEFAULT_TEST_DEVICE_26_2 + - test_repetition_mode: retry_on_failure + - maximum_test_repetitions: "2" + - scheme: StripeCardScan + is_always_run: true + - xcode-test@4: + inputs: + - destination: $DEFAULT_TEST_DEVICE_26_2 + - test_repetition_mode: retry_on_failure + - maximum_test_repetitions: "2" + - scheme: StripeApplePay + is_always_run: true + - xcode-test@4: + inputs: + - destination: $DEFAULT_TEST_DEVICE_26_2 + - test_repetition_mode: retry_on_failure + - maximum_test_repetitions: "2" + - scheme: StripeUICore + is_always_run: true + - xcode-test@4: + inputs: + - destination: $DEFAULT_TEST_DEVICE_26_2 + - test_repetition_mode: retry_on_failure + - maximum_test_repetitions: "2" + - scheme: StripeCryptoOnramp + is_always_run: true - deploy-to-bitrise-io@2: {} - save-spm-cache@1: {} before_run: @@ -380,10 +484,10 @@ workflows: - notify_ci meta: bitrise.io: - stack: osx-xcode-26.1.x + stack: osx-xcode-26.2.x machine_type_id: g2.mac.large envs: - - DEFAULT_TEST_DEVICE: $DEFAULT_TEST_DEVICE_26_1 + - DEFAULT_TEST_DEVICE: $DEFAULT_TEST_DEVICE_26_2 framework-tests-no-mocks: steps: - fastlane@3: @@ -441,12 +545,12 @@ workflows: - destination: generic/platform=iOS Simulator - deploy-to-bitrise-io@2: {} envs: - - DEFAULT_TEST_DEVICE: platform=iOS Simulator,name=iPhone 16,OS=26.1 + - DEFAULT_TEST_DEVICE: platform=iOS Simulator,name=iPhone 12 mini,OS=26.2 before_run: - prep_all meta: bitrise.io: - stack: osx-xcode-26.1.x + stack: osx-xcode-26.2.x test-builds-xcode-26-release: steps: - script@1: @@ -454,12 +558,12 @@ workflows: - content: xcodebuild build -workspace "Stripe.xcworkspace" -scheme "AllStripeFrameworks" -configuration "Release" -sdk "iphonesimulator" | xcpretty title: Build release builds envs: - - DEFAULT_TEST_DEVICE: platform=iOS Simulator,name=iPhone 16,OS=26.1 + - DEFAULT_TEST_DEVICE: platform=iOS Simulator,name=iPhone 12 mini,OS=26.2 before_run: - prep_all meta: bitrise.io: - stack: osx-xcode-26.1.x + stack: osx-xcode-26.2.x install-tests: steps: - fastlane@3: @@ -538,6 +642,40 @@ workflows: bitrise.io: stack: osx-xcode-16.0.x machine_type_id: g2.mac.large + legacy-tests-17: + steps: + - fastlane@3: + inputs: + - lane: legacy_tests_17 + title: fastlane legacy_tests_17 + envs: + - DEFAULT_TEST_DEVICE: platform=iOS Simulator,name=iPhone 12 mini,OS=17.5 + before_run: + - prep_all + after_run: + - upload_logs + - notify_ci + meta: + bitrise.io: + stack: osx-xcode-16.0.x + machine_type_id: g2.mac.large + legacy-tests-18: + steps: + - fastlane@3: + inputs: + - lane: legacy_tests_18 + title: fastlane legacy_tests_18 + envs: + - DEFAULT_TEST_DEVICE: platform=iOS Simulator,name=iPhone 15,OS=18.0 + before_run: + - prep_all + after_run: + - upload_logs + - notify_ci + meta: + bitrise.io: + stack: osx-xcode-16.0.x + machine_type_id: g2.mac.large lint-tests: steps: - git-clone@8.2: diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 7e975e0e6e92..41f5e6537b59 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -116,6 +116,14 @@ platform :ios do legacy_tests(device: 'iPhone 12 mini', version: '16.4') end + lane :legacy_tests_17 do + legacy_tests(device: 'iPhone 12 mini', version: '17.5') + end + + lane :legacy_tests_18 do + legacy_tests(device: 'iPhone 15', version: '18.0') + end + lane :e2e_only do Dir.chdir('..') do sh("./ci_scripts/test.rb --scheme 'StripeiOS' --device '#{DEFAULT_TEST_DEVICE}' --version #{DEFAULT_TEST_VERSION} --only-test 'StripeiOS Tests/STPE2ETest' --retry-on-failure") diff --git a/fastlane/README.md b/fastlane/README.md index fd51afa2f21b..dde4baa222e8 100644 --- a/fastlane/README.md +++ b/fastlane/README.md @@ -111,6 +111,22 @@ Generate new localized screenshots +### ios legacy_tests_17 + +```sh +[bundle exec] fastlane ios legacy_tests_17 +``` + + + +### ios legacy_tests_18 + +```sh +[bundle exec] fastlane ios legacy_tests_18 +``` + + + ### ios e2e_only ```sh