Skip to content

Commit 25a8439

Browse files
authored
[ML] Muting InternalCategorizationAggregationTests testReduceRandom (#88685) (#88688)
Due to #87240
1 parent 10e0022 commit 25a8439

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/InternalCategorizationAggregationTests.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,12 @@ protected List<NamedXContentRegistry.Entry> getNamedXContents() {
6464
);
6565
}
6666

67+
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/87240")
68+
public void testReduceRandom() {
69+
// The bug is in the assertReduced() method immediately below that the base class testReduceRandom() calls.
70+
// To unmute after the bug is fixed, simply delete this entire method so that the base class method is used again.
71+
}
72+
6773
@Override
6874
protected void assertReduced(InternalCategorizationAggregation reduced, List<InternalCategorizationAggregation> inputs) {
6975
Map<Object, Long> reducedCounts = toCounts(reduced.getBuckets().stream());

0 commit comments

Comments
 (0)