Skip to content

Commit 0b8ae22

Browse files
authored
Remove leftover search(Query, Collector) usages in TestTaxonomyFacetAssociations (apache#13726)
1 parent d7dc57d commit 0b8ae22

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

lucene/facet/src/test/org/apache/lucene/facet/taxonomy/TestTaxonomyFacetAssociations.java

+4-6
Original file line numberDiff line numberDiff line change
@@ -242,10 +242,9 @@ public void testIntSumAssociation() throws Exception {
242242

243243
public void testIntAssociationRandom() throws Exception {
244244

245-
FacetsCollector fc = new FacetsCollector();
246-
247245
IndexSearcher searcher = newSearcher(reader);
248-
searcher.search(new TermQuery(new Term("match", "yes")), fc);
246+
FacetsCollector fc =
247+
searcher.search(new TermQuery(new Term("match", "yes")), new FacetsCollectorManager());
249248

250249
Map<String, Integer> expected;
251250
Facets facets;
@@ -332,10 +331,9 @@ public void testFloatSumAssociation() throws Exception {
332331

333332
public void testFloatAssociationRandom() throws Exception {
334333

335-
FacetsCollector fc = new FacetsCollector();
336-
337334
IndexSearcher searcher = newSearcher(reader);
338-
searcher.search(new TermQuery(new Term("match", "yes")), fc);
335+
FacetsCollector fc =
336+
searcher.search(new TermQuery(new Term("match", "yes")), new FacetsCollectorManager());
339337

340338
Map<String, Float> expected;
341339
Facets facets;

0 commit comments

Comments
 (0)