mirror of
https://github.com/apache/lucene.git
synced 2025-02-07 02:28:49 +00:00
LUCENE-8686: Fix test bug in TestTaxonomyFacetSumValueSource#testRandom
This commit is contained in:
parent
6e81def01c
commit
4625270ce0
@ -452,8 +452,10 @@ public class TestTaxonomyFacetSumValueSource extends FacetTestCase {
|
||||
List<LabelAndValue> labelValues = new ArrayList<>();
|
||||
double totValue = 0;
|
||||
for(Map.Entry<String,Float> ent : expectedValues[i].entrySet()) {
|
||||
labelValues.add(new LabelAndValue(ent.getKey(), ent.getValue()));
|
||||
totValue += ent.getValue();
|
||||
if (ent.getValue() > 0) {
|
||||
labelValues.add(new LabelAndValue(ent.getKey(), ent.getValue()));
|
||||
totValue += ent.getValue();
|
||||
}
|
||||
}
|
||||
sortLabelValues(labelValues);
|
||||
if (totValue > 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user