aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Auth/Tests/FIRVerifyClientRequestTest.m
diff options
context:
space:
mode:
Diffstat (limited to 'Example/Auth/Tests/FIRVerifyClientRequestTest.m')
-rw-r--r--Example/Auth/Tests/FIRVerifyClientRequestTest.m4
1 files changed, 3 insertions, 1 deletions
diff --git a/Example/Auth/Tests/FIRVerifyClientRequestTest.m b/Example/Auth/Tests/FIRVerifyClientRequestTest.m
index dcb00f6..31d4ca8 100644
--- a/Example/Auth/Tests/FIRVerifyClientRequestTest.m
+++ b/Example/Auth/Tests/FIRVerifyClientRequestTest.m
@@ -78,10 +78,12 @@ static NSString *const kExpectedAPIURL =
@brief Tests the verify client request.
*/
- (void)testVerifyClientRequest {
+ FIRAuthRequestConfiguration *requestConfiguration =
+ [[FIRAuthRequestConfiguration alloc] initWithAPIKey:kFakeAPIKey];
FIRVerifyClientRequest *request =
[[FIRVerifyClientRequest alloc] initWithAppToken:kFakeAppToken
isSandbox:YES
- APIKey:kFakeAPIKey];
+ requestConfiguration:requestConfiguration];
[FIRAuthBackend verifyClient:request callback:^(FIRVerifyClientResponse *_Nullable response,
NSError *_Nullable error) {
}];