From ee2af2df4bc352d5646919f06cadba823e208676 Mon Sep 17 00:00:00 2001 From: Federico Maccaroni Date: Mon, 23 Dec 2024 20:06:18 -0300 Subject: [PATCH] PM-15634 Fix indent in BitwardenTestCase --- .../Support/BitwardenTestCase.swift | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/GlobalTestHelpers/Support/BitwardenTestCase.swift b/GlobalTestHelpers/Support/BitwardenTestCase.swift index d3f35596b..7db932186 100644 --- a/GlobalTestHelpers/Support/BitwardenTestCase.swift +++ b/GlobalTestHelpers/Support/BitwardenTestCase.swift @@ -9,14 +9,14 @@ open class BitwardenTestCase: XCTestCase { @MainActor override open class func setUp() { - if UIDevice.current.name != "iPhone 16 Pro" || UIDevice.current.systemVersion != "18.1" { - assertionFailure( - """ - Tests must be run using iOS 18.1 on an iPhone 16 Pro simulator. - Snapshot tests depend on using the correct device. - """ - ) - } + if UIDevice.current.name != "iPhone 16 Pro" || UIDevice.current.systemVersion != "18.1" { + assertionFailure( + """ + Tests must be run using iOS 18.1 on an iPhone 16 Pro simulator. + Snapshot tests depend on using the correct device. + """ + ) + } // Apply default appearances for snapshot tests. UI.applyDefaultAppearances()