We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5367d8 commit 594816fCopy full SHA for 594816f
firebase-firestore/src/androidTest/java/com/google/firebase/firestore/AggregationTest.java
@@ -898,8 +898,7 @@ public void testAggregateFailWithGoodMessageIfMissingIndex() {
898
Query compositeIndexQuery = collection.whereEqualTo("field1", 42).whereLessThan("field2", 99);
899
AggregateQuery compositeIndexAggregateQuery =
900
compositeIndexQuery.aggregate(AggregateField.count(), sum("pages"), average("pages"));
901
- Task<AggregateQuerySnapshot> task =
902
- compositeIndexAggregateCountQuery.get(AggregateSource.SERVER);
+ Task<AggregateQuerySnapshot> task = compositeIndexAggregateQuery.get(AggregateSource.SERVER);
903
904
Throwable throwable = assertThrows(Throwable.class, () -> waitFor(task));
905
0 commit comments