Skip to content

Commit

Permalink
ESQL: Unmute MedianAbsoluteDeviationDoubleGroupingAggregatorFunctionT…
Browse files Browse the repository at this point in the history
…ests testMulitvaluedNullGroup (elastic#109942)

Already fixed in elastic#100556.
  • Loading branch information
alex-spies authored Jun 20, 2024
1 parent a692aed commit e79ee17
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ public final void testMulitvaluedNullGroupsAndValues() {
assertSimpleOutput(origInput, results);
}

public void testMulitvaluedNullGroup() {
public final void testMulitvaluedNullGroup() {
DriverContext driverContext = driverContext();
BlockFactory blockFactory = driverContext.blockFactory();
int end = between(1, 2); // TODO revert
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,4 @@ static double median(DoubleStream s) {
int c = data.length / 2;
return data.length % 2 == 0 ? (data[c - 1] + data[c]) / 2 : data[c];
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/101569")
public void testMulitvaluedNullGroup() {
// only here for muting it
}
}

0 comments on commit e79ee17

Please sign in to comment.