aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Example/Tests/API/FIRQuerySnapshotTests.mm
diff options
context:
space:
mode:
Diffstat (limited to 'Firestore/Example/Tests/API/FIRQuerySnapshotTests.mm')
-rw-r--r--Firestore/Example/Tests/API/FIRQuerySnapshotTests.mm12
1 files changed, 6 insertions, 6 deletions
diff --git a/Firestore/Example/Tests/API/FIRQuerySnapshotTests.mm b/Firestore/Example/Tests/API/FIRQuerySnapshotTests.mm
index bb8110b..f8c7d60 100644
--- a/Firestore/Example/Tests/API/FIRQuerySnapshotTests.mm
+++ b/Firestore/Example/Tests/API/FIRQuerySnapshotTests.mm
@@ -28,15 +28,15 @@ NS_ASSUME_NONNULL_BEGIN
@implementation FIRQuerySnapshotTests
- (void)testEquals {
- FIRQuerySnapshot *foo = FSTTestQuerySnapshot(@"foo", @{}, @{ @"a" : @{@"a" : @1} }, YES, NO);
- FIRQuerySnapshot *fooDup = FSTTestQuerySnapshot(@"foo", @{}, @{ @"a" : @{@"a" : @1} }, YES, NO);
- FIRQuerySnapshot *differentPath = FSTTestQuerySnapshot(@"bar", @{},
+ FIRQuerySnapshot *foo = FSTTestQuerySnapshot("foo", @{}, @{ @"a" : @{@"a" : @1} }, YES, NO);
+ FIRQuerySnapshot *fooDup = FSTTestQuerySnapshot("foo", @{}, @{ @"a" : @{@"a" : @1} }, YES, NO);
+ FIRQuerySnapshot *differentPath = FSTTestQuerySnapshot("bar", @{},
@{ @"a" : @{@"a" : @1} }, YES, NO);
- FIRQuerySnapshot *differentDoc = FSTTestQuerySnapshot(@"foo",
+ FIRQuerySnapshot *differentDoc = FSTTestQuerySnapshot("foo",
@{ @"a" : @{@"b" : @1} }, @{}, YES, NO);
- FIRQuerySnapshot *noPendingWrites = FSTTestQuerySnapshot(@"foo", @{},
+ FIRQuerySnapshot *noPendingWrites = FSTTestQuerySnapshot("foo", @{},
@{ @"a" : @{@"a" : @1} }, NO, NO);
- FIRQuerySnapshot *fromCache = FSTTestQuerySnapshot(@"foo", @{},
+ FIRQuerySnapshot *fromCache = FSTTestQuerySnapshot("foo", @{},
@{ @"a" : @{@"a" : @1} }, YES, YES);
XCTAssertEqualObjects(foo, fooDup);
XCTAssertNotEqualObjects(foo, differentPath);