aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore
diff options
context:
space:
mode:
authorGravatar Sebastian Schmidt <mrschmidt@google.com>2017-12-08 14:10:03 -0800
committerGravatar Sebastian Schmidt <mrschmidt@google.com>2017-12-08 14:11:19 -0800
commita2f9591f60b12dde2a3b21eb5688c208b98c11f2 (patch)
tree0340f5048d822bcb5a881d7bedcbfde7e1ce2174 /Firestore
parent84e7f27a3f1885cfe986b154283bcade52f4408d (diff)
Fixing comment
Diffstat (limited to 'Firestore')
-rw-r--r--Firestore/Example/Tests/Integration/API/FIRServerTimestampTests.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Firestore/Example/Tests/Integration/API/FIRServerTimestampTests.m b/Firestore/Example/Tests/Integration/API/FIRServerTimestampTests.m
index 94dcee0..f2ae687 100644
--- a/Firestore/Example/Tests/Integration/API/FIRServerTimestampTests.m
+++ b/Firestore/Example/Tests/Integration/API/FIRServerTimestampTests.m
@@ -108,7 +108,7 @@
return snapshot;
}
-/** Waits for a snapshot with that has no pending writes */
+/** Waits for a snapshot that has no pending writes */
- (FIRDocumentSnapshot *)waitForRemoteEvent {
FIRDocumentSnapshot *snapshot = [_accumulator awaitEventWithName:@"Remote event."];
XCTAssertFalse(snapshot.metadata.hasPendingWrites);
@@ -141,7 +141,7 @@
}
}
-/** Waits for a snapshot containing _setData but with resolved server timestamps. */
+/** Verifies a snapshot containing _setData but with resolved server timestamps. */
- (id)verifySnapshotWithResolvedTimestamps:(FIRDocumentSnapshot *)snapshot {
XCTAssertTrue(snapshot.exists);
NSDate *when = snapshot[@"when"];