aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Auth
diff options
context:
space:
mode:
authorGravatar Xiangtian Dai <xiangtian@google.com>2017-08-30 19:19:39 -0700
committerGravatar GitHub <noreply@github.com>2017-08-30 19:19:39 -0700
commit0ce42970fcc94116700c9e6914bc97ce4dd73d00 (patch)
treecfa12e29894e41212aedcab932e782eaa9f18125 /Example/Auth
parent2816840aa20074f2f900a461a0ceb3cbc74b8bb2 (diff)
Adds missing unit tests to the Example project and fixes one test case. (#224)
Diffstat (limited to 'Example/Auth')
-rw-r--r--Example/Auth/Tests/FIRGetProjectConfigRequestTests.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Example/Auth/Tests/FIRGetProjectConfigRequestTests.m b/Example/Auth/Tests/FIRGetProjectConfigRequestTests.m
index 82f854e..2c5d5fd 100644
--- a/Example/Auth/Tests/FIRGetProjectConfigRequestTests.m
+++ b/Example/Auth/Tests/FIRGetProjectConfigRequestTests.m
@@ -87,7 +87,7 @@ static NSString *gAPIHost = @"www.googleapis.com";
gAPIHost,
kGetProjectConfigEndPoint,
kTestAPIKey];
- XCTAssertTrue([URLString isEqualToString:[request requestURL]]);
+ XCTAssertEqualObjects(URLString, [request requestURL].absoluteString);
}
@end