Skip to content

Commit 818b6c7

Browse files
committed
lint fixes
1 parent 6e6fbd8 commit 818b6c7

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

FirebaseAuth/Tests/SampleSwift/AuthenticationExampleUITests/AuthenticationExampleUITests.swift

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -226,25 +226,24 @@ class AuthenticationExampleUITests: XCTestCase {
226226
removeUIInterruptionMonitor(interruptionMonitor)
227227
}
228228

229-
func testEmailLinkSentSuccessfully(){
229+
func testEmailLinkSentSuccessfully() {
230230
app.staticTexts["Email Link/Passwordless"].tap()
231231

232232
let testEmail = "[email protected]"
233233
app.textFields["Enter Authentication Email"].tap()
234234
app.textFields["Enter Authentication Email"].typeText(testEmail)
235235
app.buttons["return"].tap() // Dismiss keyboard
236-
237236
app.buttons["Send Sign In Link"].tap()
238-
239-
//Wait for the error message to appear (if there is an error)
237+
238+
// Wait for the error message to appear (if there is an error)
240239
let errorAlert = app.alerts.staticTexts["Error"]
241240
let errorExists = errorAlert.waitForExistence(timeout: 5.0)
242241

243242
app.swipeDown(velocity: .fast)
244243

245-
//Assert that there is no error message (success case)
244+
// Assert that there is no error message (success case)
246245
XCTAssertFalse(errorExists, "Expected no error message, but one appeared.")
247-
//At this point, the link is assumed to have been sent successfully since no error appeared
246+
// At this point, the link is assumed to have been sent successfully since no error appeared
248247
}
249248

250249
// MARK: - Private Helpers

0 commit comments

Comments
 (0)