Override and mute InternalAutoDateHistogramTests#testReduceRandom() (#39536)

pending resolution of #39497
This commit is contained in:
Mark Tozzi 2019-02-28 15:40:09 -05:00
parent 1124624e87
commit 609118c229
1 changed files with 7 additions and 0 deletions

View File

@ -109,6 +109,13 @@ public class InternalAutoDateHistogramTests extends InternalMultiBucketAggregati
assertThat(result, equalTo(2)); assertThat(result, equalTo(2));
} }
@Override
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/39497")
// TODO: When resolving the above AwaitsFix, just delete this override. Method is only overriden to apply the annotation.
public void testReduceRandom() {
super.testReduceRandom();
}
@Override @Override
protected void assertReduced(InternalAutoDateHistogram reduced, List<InternalAutoDateHistogram> inputs) { protected void assertReduced(InternalAutoDateHistogram reduced, List<InternalAutoDateHistogram> inputs) {