aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Example/Tests/Core/FSTSyncEngine+Testing.h
diff options
context:
space:
mode:
Diffstat (limited to 'Firestore/Example/Tests/Core/FSTSyncEngine+Testing.h')
-rw-r--r--Firestore/Example/Tests/Core/FSTSyncEngine+Testing.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Firestore/Example/Tests/Core/FSTSyncEngine+Testing.h b/Firestore/Example/Tests/Core/FSTSyncEngine+Testing.h
index ab0697b..6e7c45b 100644
--- a/Firestore/Example/Tests/Core/FSTSyncEngine+Testing.h
+++ b/Firestore/Example/Tests/Core/FSTSyncEngine+Testing.h
@@ -18,14 +18,15 @@
#import "Firestore/Source/Core/FSTSyncEngine.h"
-@class FSTDocumentKey;
+#include "Firestore/core/src/firebase/firestore/model/document_key.h"
NS_ASSUME_NONNULL_BEGIN
@interface FSTSyncEngine (Testing)
/** Returns the current set of limbo document keys and their associated target IDs. */
-- (NSDictionary<FSTDocumentKey *, FSTBoxedTargetID *> *)currentLimboDocuments;
+- (std::map<firebase::firestore::model::DocumentKey, firebase::firestore::model::TargetId>)
+ currentLimboDocuments;
@end