Skip to content
Merged
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
6 changes: 4 additions & 2 deletions firestore/integration_test_internal/src/source_test.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#include <future>
#include <map>
#include <string>

#include "firebase/firestore.h"
#include "firestore_integration_test.h"
Expand Down Expand Up @@ -257,7 +259,7 @@ TEST_F(SourceTest, GetDocumentWhileOfflineWithDifferentGetOptions) {
error_promise.set_value(error_code);
});
// Note that future::get() will wait until the future has a valid result and
// retrieves it. Calling wait() before get() is not needed.
// retrieve it. Calling wait() before get() is not needed.
Error error_code = error_future.get();
EXPECT_EQ(error_code, kErrorNone);

Expand Down Expand Up @@ -311,7 +313,7 @@ TEST_F(SourceTest, GetCollectionWhileOfflineWithDifferentGetOptions) {
error_promise.set_value(error_code);
});
// Note that future::get() will wait until the future has a valid result and
// retrieves it. Calling wait() before get() is not needed.
// retrieve it. Calling wait() before get() is not needed.
Error error_code = error_future.get();
EXPECT_EQ(error_code, kErrorNone);

Expand Down