aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Example/Tests/Local/FSTLocalSerializerTests.mm
diff options
context:
space:
mode:
Diffstat (limited to 'Firestore/Example/Tests/Local/FSTLocalSerializerTests.mm')
-rw-r--r--Firestore/Example/Tests/Local/FSTLocalSerializerTests.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Firestore/Example/Tests/Local/FSTLocalSerializerTests.mm b/Firestore/Example/Tests/Local/FSTLocalSerializerTests.mm
index 87242fa..d94925d 100644
--- a/Firestore/Example/Tests/Local/FSTLocalSerializerTests.mm
+++ b/Firestore/Example/Tests/Local/FSTLocalSerializerTests.mm
@@ -126,7 +126,7 @@ NS_ASSUME_NONNULL_BEGIN
}
- (void)testEncodesDocumentAsMaybeDocument {
- FSTDocument *doc = FSTTestDoc(@"some/path", 42, @{@"foo" : @"bar"}, NO);
+ FSTDocument *doc = FSTTestDoc("some/path", 42, @{@"foo" : @"bar"}, NO);
FSTPBMaybeDocument *maybeDocProto = [FSTPBMaybeDocument message];
maybeDocProto.document = [GCFSDocument message];
@@ -143,7 +143,7 @@ NS_ASSUME_NONNULL_BEGIN
}
- (void)testEncodesDeletedDocumentAsMaybeDocument {
- FSTDeletedDocument *deletedDoc = FSTTestDeletedDoc(@"some/path", 42);
+ FSTDeletedDocument *deletedDoc = FSTTestDeletedDoc("some/path", 42);
FSTPBMaybeDocument *maybeDocProto = [FSTPBMaybeDocument message];
maybeDocProto.noDocument = [FSTPBNoDocument message];