Skip to content

Commit 6f97357

Browse files
committed
Fix merge error
1 parent 1300f27 commit 6f97357

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

firebase-firestore/src/test/java/com/google/firebase/firestore/local/LocalStoreTestCase.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1143,7 +1143,10 @@ public void testIgnoresTargetMappingAfterExistenceFilterMismatch() {
11431143
// Persist a mapping with a single document
11441144
applyRemoteEvent(
11451145
addedRemoteEvent(
1146-
asList(doc("foo/a", 10, map("matches", true))), asList(targetId), emptyList()));
1146+
asList(doc("foo/a", 10, map("matches", true))),
1147+
asList(targetId),
1148+
emptyList(),
1149+
version(10)));
11471150
applyRemoteEvent(noChangeEvent(targetId, 10));
11481151
updateViews(targetId, /* fromCache= */ false);
11491152

0 commit comments

Comments
 (0)