From a5c67a4671984237155b22ef2cbfb41f457af392 Mon Sep 17 00:00:00 2001 From: Denver Coneybeare Date: Fri, 7 Apr 2023 02:00:15 -0400 Subject: [PATCH] QueryTest.java: Remove check for `getTargetBackend() != NIGHTLY` since bloom filter support has now been deployed to production. --- .../java/com/google/firebase/firestore/QueryTest.java | 8 -------- 1 file changed, 8 deletions(-) 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();