Skip to content

Commit 5dbda4c

Browse files
committed
add missing imports to pass compileDebugAndroidTestJavaWithJavac
1 parent 912db3c commit 5dbda4c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
import static org.junit.Assert.assertNull;
3232
import static org.junit.Assert.assertTrue;
3333
import static org.junit.Assume.assumeFalse;
34+
import static org.junit.Assume.assumeTrue;
3435

3536
import androidx.test.ext.junit.runners.AndroidJUnit4;
3637
import com.google.android.gms.tasks.Task;
@@ -1071,8 +1072,6 @@ public void resumingQueryShouldRemoveDeletedDocumentsIndicatedByExistenceFilter(
10711072
assertEquals(snapshot2.size(), 50);
10721073
}
10731074

1074-
// TODO(orquery): Enable this test when prod supports OR queries.
1075-
@Ignore
10761075
@Test
10771076
public void testOrQueries() {
10781077
Map<String, Map<String, Object>> testDocs =

firebase-firestore/src/main/java/com/google/firebase/firestore/remote/RemoteEvent.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ public Map<Integer, TargetChange> getTargetChanges() {
5656
}
5757

5858
/**
59-
* A map of targets that is known to be inconsistent, and the purpose for re-listening. Listens
60-
* for these targets should be re-established without resume tokens.
59+
* Returns a map of targets that is known to be inconsistent, and the purpose for re-listening.
60+
* Listens for these targets should be re-established without resume tokens.
6161
*/
6262
public Map<Integer, QueryPurpose> getTargetMismatches() {
6363
return targetMismatches;

0 commit comments

Comments
 (0)