From 4dc63f8d7cbf60417b88c6a77839ea32656627b9 Mon Sep 17 00:00:00 2001 From: Gil Date: Thu, 22 Feb 2018 08:26:22 -0800 Subject: Fix Firestore tests for M22 (#834) * Add FIRFirestoreTests to the Firestore Xcode project * Avoid waitForExpectations:timeout: This API was added in Xcode 8.3, but we still build production releases with Xcode 8.2. waitForExpectationsWithTimeout:handler: is available from Xcode 7.2. * Add AppForUnitTesting Add a utility for constructing a Firebase App for testing. * Handle the nil UID from FIRAuth * Avoid running CMake tests twice * Only build app_testing on Apple platforms * Revise test.sh messages --- .../src/firebase/firestore/auth/firebase_credentials_provider_apple.mm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Firestore/core/src/firebase/firestore/auth/firebase_credentials_provider_apple.mm') diff --git a/Firestore/core/src/firebase/firestore/auth/firebase_credentials_provider_apple.mm b/Firestore/core/src/firebase/firestore/auth/firebase_credentials_provider_apple.mm index f463958..fe3cb24 100644 --- a/Firestore/core/src/firebase/firestore/auth/firebase_credentials_provider_apple.mm +++ b/Firestore/core/src/firebase/firestore/auth/firebase_credentials_provider_apple.mm @@ -28,8 +28,7 @@ namespace firestore { namespace auth { FirebaseCredentialsProvider::FirebaseCredentialsProvider(FIRApp* app) - : contents_( - std::make_shared(app, util::MakeStringView([app getUID]))) { + : contents_(std::make_shared(app, User::FromUid([app getUID]))) { std::weak_ptr weak_contents = contents_; auth_listener_handle_ = [[NSNotificationCenter defaultCenter] -- cgit v1.2.3