Skip to content

Commit 158c084

Browse files
authored
QueryTest.java: Remove check for getTargetBackend() != NIGHTLY since bloom filter support has now been deployed to production. (#4871)
1 parent 8c6677f commit 158c084

File tree

1 file changed

+0
-8
lines changed
  • firebase-firestore/src/androidTest/java/com/google/firebase/firestore

1 file changed

+0
-8
lines changed

firebase-firestore/src/androidTest/java/com/google/firebase/firestore/QueryTest.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1148,14 +1148,6 @@ public void resumingAQueryShouldUseBloomFilterToAvoidFullRequery() throws Except
11481148
.that(existenceFilterMismatchInfo.existenceFilterCount())
11491149
.isEqualTo(50);
11501150

1151-
// Skip the verification of the bloom filter when testing against production because the bloom
1152-
// filter is only implemented in nightly.
1153-
// TODO(b/271949433) Remove this "if" block once the bloom filter logic is deployed to
1154-
// production.
1155-
if (IntegrationTestUtil.getTargetBackend() != IntegrationTestUtil.TargetBackend.NIGHTLY) {
1156-
return;
1157-
}
1158-
11591151
// Verify that Watch sent a valid bloom filter.
11601152
ExistenceFilterMismatchListener.ExistenceFilterBloomFilterInfo bloomFilter =
11611153
existenceFilterMismatchInfo.bloomFilter();

0 commit comments

Comments
 (0)