Skip to content

Commit a7b4469

Browse files
authored
Fix combine test build (#11080)
1 parent 9d986c8 commit a7b4469

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

FirebaseCombineSwift/Tests/Unit/Auth/AuthMocks.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,11 @@ extension AuthBackendImplementationMock {
9494
fatalError("You need to implement \(#function) in your mock.")
9595
}
9696

97+
func revokeToken(_ request: FIRRevokeTokenRequest,
98+
callback: @escaping FIRRevokeTokenResponseCallback) {
99+
fatalError("You need to implement \(#function) in your mock.")
100+
}
101+
97102
func signIn(withGameCenter request: FIRSignInWithGameCenterRequest,
98103
callback: @escaping FIRSignInWithGameCenterResponseCallback) {
99104
fatalError("You need to implement \(#function) in your mock.")

FirebaseCombineSwift/Tests/Unit/FirebaseCombine-unit-Bridging-Header.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@
4444
#import "FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigResponse.h"
4545
#import "FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordRequest.h"
4646
#import "FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordResponse.h"
47+
#import "FirebaseAuth/Sources/Backend/RPC/FIRRevokeTokenRequest.h"
48+
#import "FirebaseAuth/Sources/Backend/RPC/FIRRevokeTokenResponse.h"
4749
#import "FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenRequest.h"
4850
#import "FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenResponse.h"
4951
#import "FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeRequest.h"

0 commit comments

Comments
 (0)