Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ - (void)signInAnonymously {
handler:^(NSError *error) {
if (error != nil) {
XCTFail(@"Failed to wait for expectations "
@"in anonymousy sign in. Error: %@",
@"in anonymously sign in. Error: %@",
error.localizedDescription);
}
}];
Expand Down
2 changes: 1 addition & 1 deletion FirebaseAuth/Tests/Unit/GetProjectConfigTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class GetProjectConfigTests: RPCBaseTests {
)
}

/** @fn testSuccessFulGetProjectConfigRequest
/** @fn testSuccessfulGetProjectConfigRequest
@brief This test checks for a successful response
*/
func testSuccessfulGetProjectConfigRequest() async throws {
Expand Down
2 changes: 1 addition & 1 deletion FirebaseAuth/Tests/Unit/RPCBaseTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class RPCBaseTests: XCTestCase {
}

/** @fn checkBackendError
@brief This test checks error messagess from the backend map to the expected error codes
@brief This test checks error messages from the backend map to the expected error codes
*/
func checkBackendError(request: any AuthRPCRequest,
message: String = "",
Expand Down
Loading