Skip to content

Commit e79ee17

Browse files
authored
ESQL: Unmute MedianAbsoluteDeviationDoubleGroupingAggregatorFunctionTests testMulitvaluedNullGroup (#109942)
Already fixed in #100556.
1 parent a692aed commit e79ee17

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/aggregation/GroupingAggregatorFunctionTestCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ public final void testMulitvaluedNullGroupsAndValues() {
276276
assertSimpleOutput(origInput, results);
277277
}
278278

279-
public void testMulitvaluedNullGroup() {
279+
public final void testMulitvaluedNullGroup() {
280280
DriverContext driverContext = driverContext();
281281
BlockFactory blockFactory = driverContext.blockFactory();
282282
int end = between(1, 2); // TODO revert

x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/aggregation/MedianAbsoluteDeviationDoubleGroupingAggregatorFunctionTests.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,4 @@ static double median(DoubleStream s) {
7676
int c = data.length / 2;
7777
return data.length % 2 == 0 ? (data[c - 1] + data[c]) / 2 : data[c];
7878
}
79-
80-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/101569")
81-
public void testMulitvaluedNullGroup() {
82-
// only here for muting it
83-
}
8479
}

0 commit comments

Comments
 (0)