Skip to content

Commit

Permalink
Revert "Mute MedianAbsoluteDeviationDoubleGroupingAggregatorFunctionT…
Browse files Browse the repository at this point in the history
…ests testMulitvaluedNullGroup (elastic#101581)"

This reverts commit 5e8b237.
  • Loading branch information
nik9000 committed Oct 31, 2023
1 parent 30a1284 commit 4550213
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 @@ -309,7 +309,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 @@ -79,9 +79,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 4550213

Please sign in to comment.