diff --git a/firebase-firestore/src/androidTest/java/com/google/firebase/firestore/QueryTest.java b/firebase-firestore/src/androidTest/java/com/google/firebase/firestore/QueryTest.java index 6aa5a8e91a4..9881348dcb8 100644 --- a/firebase-firestore/src/androidTest/java/com/google/firebase/firestore/QueryTest.java +++ b/firebase-firestore/src/androidTest/java/com/google/firebase/firestore/QueryTest.java @@ -1148,14 +1148,6 @@ public void resumingAQueryShouldUseBloomFilterToAvoidFullRequery() throws Except .that(existenceFilterMismatchInfo.existenceFilterCount()) .isEqualTo(50); - // Skip the verification of the bloom filter when testing against production because the bloom - // filter is only implemented in nightly. - // TODO(b/271949433) Remove this "if" block once the bloom filter logic is deployed to - // production. - if (IntegrationTestUtil.getTargetBackend() != IntegrationTestUtil.TargetBackend.NIGHTLY) { - return; - } - // Verify that Watch sent a valid bloom filter. ExistenceFilterMismatchListener.ExistenceFilterBloomFilterInfo bloomFilter = existenceFilterMismatchInfo.bloomFilter();