Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions firestore/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ endif()
set(common_SRCS
src/common/cleanup.h
src/common/collection_reference.cc
src/common/compiler_info.cc
src/common/compiler_info.h
src/common/document_change.cc
src/common/document_reference.cc
src/common/document_snapshot.cc
Expand Down
4 changes: 2 additions & 2 deletions firestore/integration_test/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ platform :ios, '8.0'
# Firebase Realtime Firestore test application.

target 'integration_test' do
pod 'Firebase/Firestore', '6.24.0'
pod 'Firebase/Auth', '6.24.0'
pod 'Firebase/Firestore', '6.32.2'
pod 'Firebase/Auth', '6.32.2'
end

post_install do |installer|
Expand Down
6 changes: 4 additions & 2 deletions firestore/integration_test/src/integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -360,8 +360,10 @@ TEST_F(FirebaseFirestoreBasicTest, TestDocumentListener) {
firebase::firestore::ListenerRegistration registration =
document.AddSnapshotListener(
[&](const firebase::firestore::DocumentSnapshot& result,
firebase::firestore::Error error) {
EXPECT_EQ(error, firebase::firestore::kErrorOk);
firebase::firestore::Error error_code,
const std::string& error_message) {
EXPECT_EQ(error_code, firebase::firestore::kErrorOk);
EXPECT_EQ(error_message, "");
document_snapshots.push_back(result.GetData());
});

Expand Down