Skip to content

Commit

Permalink
type check
Browse files Browse the repository at this point in the history
  • Loading branch information
paulb777 committed Nov 20, 2023
1 parent 0a6500a commit 99465fc
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions FirebaseAuth/Tests/Unit/ObjCAPITests.m
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,7 @@ - (void)FIRAuth_h:(FIRAuth *)auth
[auth useAppLanguage];
[auth useEmulatorWithHost:@"host" port:123];
#if TARGET_OS_IOS
[auth canHandleURL:url];
[auth setAPNSToken:[[NSData alloc] init]];
b = [auth canHandleURL:url];
[auth setAPNSToken:[[NSData alloc] init] type:FIRAuthAPNSTokenTypeProd];
b = [auth canHandleNotification:@{}];
#if !TARGET_OS_MACCATALYST && (!defined(TARGET_OS_VISION) || !TARGET_OS_VISION)
Expand All @@ -197,7 +196,7 @@ - (void)FIRAuth_h:(FIRAuth *)auth
completion:^(NSError *_Nullable error){
}];
[auth useUserAccessGroup:@"abc" error:&error];
[auth getStoredUserForAccessGroup:@"user" error:&error];
__unused FIRUser *u = [auth getStoredUserForAccessGroup:@"user" error:&error];
}

#if !TARGET_OS_OSX
Expand Down

0 comments on commit 99465fc

Please sign in to comment.