Skip to content

Commit

Permalink
Mute MedianAbsoluteDeviationDoubleGroupingAggregatorFunctionTests tes…
Browse files Browse the repository at this point in the history
…tMulitvaluedNullGroup (elastic#101581)
  • Loading branch information
cbuescher committed Oct 31, 2023
1 parent dc5c9d2 commit c3a67fa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ public final void testMulitvaluedNullGroupsAndValues() {
assertSimpleOutput(origInput, results);
}

public final void testMulitvaluedNullGroup() {
public 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,4 +79,9 @@ 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 c3a67fa

Please sign in to comment.