Skip to content

Commit ec83755

Browse files
format
1 parent dfdbf44 commit ec83755

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

samples/swiftui/FirebaseSwiftUIExample/FirebaseSwiftUIExample/TestView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ struct TestView: View {
7070
}
7171

7272
var body: some View {
73-
AuthPickerView(){
73+
AuthPickerView {
7474
Text("Hello, world!")
7575
}
7676
.environment(authService)

samples/swiftui/FirebaseSwiftUIExample/FirebaseSwiftUIExampleUITests/MFAEnrolmentUITests.swift

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -194,18 +194,19 @@ final class MFAEnrollmentUITests: XCTestCase {
194194
startButton.tap()
195195

196196
// 6) Select UK country code and enter phone number (without dial code)
197-
// Find and tap the country selector - try multiple approaches since it's embedded in the TextField
197+
// Find and tap the country selector - try multiple approaches since it's embedded in the
198+
// TextField
198199
let countrySelector = app.buttons["🇺🇸 +1"]
199200
XCTAssertTrue(countrySelector.waitForExistence(timeout: 5))
200-
201+
201202
countrySelector.tap()
202-
203+
203204
// Select United Kingdom (+44) - try multiple element types
204205
let ukOption = app.buttons["country-option-GB"]
205206
XCTAssertTrue(ukOption.waitForExistence(timeout: 5))
206-
207+
207208
ukOption.tap()
208-
209+
209210
// Enter phone number (without dial code)
210211
let phoneField = app.textFields["phone-number-field"]
211212
XCTAssertTrue(phoneField.waitForExistence(timeout: 10))

samples/swiftui/FirebaseSwiftUIExample/FirebaseSwiftUIExampleUITests/MFAResolutionUITests.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,8 @@ final class MFAResolutionUITests: XCTestCase {
417417
}
418418
}
419419

420-
@MainActor private func signInUser(app: XCUIApplication, email: String, password: String = "123456") throws {
420+
@MainActor private func signInUser(app: XCUIApplication, email: String,
421+
password: String = "123456") throws {
421422
// Ensure we're in sign in flow
422423
let switchFlowButton = app.buttons["switch-auth-flow"]
423424
if switchFlowButton.exists && switchFlowButton.label.contains("Sign In") {

0 commit comments

Comments
 (0)