Skip to content
This repository was archived by the owner on May 8, 2026. It is now read-only.

Commit 65d4906

Browse files
authored
test: revert throw assertion in arrayContainsAnyQueries test (#2322)
1 parent 0af6f0b commit 65d4906

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

google-cloud-firestore/src/test/java/com/google/cloud/firestore/it/ITSystemTest.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1947,9 +1947,8 @@ public void arrayContainsAnyQueries() throws Exception {
19471947
if (getFirestoreEdition() == FirestoreEdition.STANDARD) {
19481948
assertEquals(asList("a", "b", "d", "e"), querySnapshotToIds(query.get().get()));
19491949
} else {
1950-
// TODO: Currently rejected because of mixed type setup, backend will change the behavior; and
1951-
// this test will fail by then.
1952-
assertThrows(ExecutionException.class, () -> querySnapshotToIds(query.get().get()));
1950+
assertThat(querySnapshotToIds(query.get().get()))
1951+
.containsExactlyElementsIn(asList("a", "b", "d", "e"));
19531952
}
19541953
}
19551954

0 commit comments

Comments
 (0)