aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Auth
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2017-06-02 11:08:36 -0700
committerGravatar GitHub <noreply@github.com>2017-06-02 11:08:36 -0700
commite2159ea8823d53bfa9217351fffdc27418a571a9 (patch)
tree4992ba434a68ed020a2bbc76099220b6d2238ee6 /Example/Auth
parent5c59342e6e19989c012877362af529b3d5d0abeb (diff)
Fix build break from macOS - Auth merge (#59)
Diffstat (limited to 'Example/Auth')
-rw-r--r--Example/Auth/Tests/FIRAuthTests.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Example/Auth/Tests/FIRAuthTests.m b/Example/Auth/Tests/FIRAuthTests.m
index b8d04f5..f891728 100644
--- a/Example/Auth/Tests/FIRAuthTests.m
+++ b/Example/Auth/Tests/FIRAuthTests.m
@@ -1215,7 +1215,7 @@ static const NSTimeInterval kWaitInterval = .5;
XCTestExpectation *expectation = [self expectationWithDescription:@"callback"];
[[FIRAuth auth] signOut:NULL];
[[FIRAuth auth] createUserWithEmail:@""
- password:kPassword
+ password:kFakePassword
completion:^(FIRUser *_Nullable user, NSError *_Nullable error) {
XCTAssertTrue([NSThread isMainThread]);
XCTAssertEqual(error.code, FIRAuthErrorCodeMissingEmail);