aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Example
diff options
context:
space:
mode:
authorGravatar zxu <zxu@google.com>2018-04-25 14:05:36 -0400
committerGravatar GitHub <noreply@github.com>2018-04-25 14:05:36 -0400
commitf9bd6d3c9491dddbfc9cbe0fcc633030a66fe9da (patch)
treea396dca81e1fc06d8870acad723e56175b75bd05 /Firestore/Example
parent5ecdcc5ae1132d2cc0d532e580b31f70369ef319 (diff)
Port `SnapshotVersion` for `Local` (#1182)
* no-brainer replace `FSTSnapshotVersion` with `SnapshotVersion` * refresh code * fix LocalStore * fix LocalStore (partial revert 78e6c38) * address changes
Diffstat (limited to 'Firestore/Example')
-rw-r--r--Firestore/Example/Tests/SpecTests/FSTSpecTests.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Firestore/Example/Tests/SpecTests/FSTSpecTests.mm b/Firestore/Example/Tests/SpecTests/FSTSpecTests.mm
index 128f825..7446d2c 100644
--- a/Firestore/Example/Tests/SpecTests/FSTSpecTests.mm
+++ b/Firestore/Example/Tests/SpecTests/FSTSpecTests.mm
@@ -600,7 +600,7 @@ static NSString *const kNoIOSTag = @"no-ios";
FSTQueryData *actual = actualTargets[targetID];
XCTAssertEqualObjects(actual.query, queryData.query);
XCTAssertEqual(actual.targetID, queryData.targetID);
- XCTAssertEqualObjects(actual.snapshotVersion, queryData.snapshotVersion);
+ XCTAssertEqual(actual.snapshotVersion, queryData.snapshotVersion);
XCTAssertEqualObjects(actual.resumeToken, queryData.resumeToken);
[actualTargets removeObjectForKey:targetID];