Skip to content

Commit 21ecaf3

Browse files
authored
Fix typo (#10624)
1 parent b2eaea9 commit 21ecaf3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

FirebaseAuth/Tests/Unit/FIRAdditionalUserInfoTests.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ + (NSDictionary *)profile {
5757
return kProfile;
5858
}
5959

60-
/** @fn testAditionalUserInfoCreation
60+
/** @fn testAdditionalUserInfoCreation
6161
@brief Tests succuessful creation of @c FIRAdditionalUserInfo with
6262
@c initWithProviderID:profile:username: call.
6363
*/
64-
- (void)testAditionalUserInfoCreation {
64+
- (void)testAdditionalUserInfoCreation {
6565
FIRAdditionalUserInfo *userInfo =
6666
[[FIRAdditionalUserInfo alloc] initWithProviderID:kProviderID
6767
profile:[[self class] profile]
@@ -73,11 +73,11 @@ - (void)testAditionalUserInfoCreation {
7373
XCTAssertEqual(userInfo.isNewUser, kIsNewUser);
7474
}
7575

76-
/** @fn testAditionalUserInfoCreationWithStaticInitializer
76+
/** @fn testAdditionalUserInfoCreationWithStaticInitializer
7777
@brief Tests succuessful creation of @c FIRAdditionalUserInfo with
7878
@c userInfoWithVerifyAssertionResponse call.
7979
*/
80-
- (void)testAditionalUserInfoCreationWithStaticInitializer {
80+
- (void)testAdditionalUserInfoCreationWithStaticInitializer {
8181
id mockVerifyAssertionResponse = OCMClassMock([FIRVerifyAssertionResponse class]);
8282
OCMExpect([mockVerifyAssertionResponse providerID]).andReturn(kProviderID);
8383
OCMExpect([mockVerifyAssertionResponse profile]).andReturn([[self class] profile]);

0 commit comments

Comments
 (0)