Mute more testSupportedFieldTypes tests ()

Relates 
This commit is contained in:
Tanguy Leroux 2020-04-17 11:53:28 +02:00
parent 7761b01a33
commit e77256c50f
4 changed files with 23 additions and 1 deletions

@ -218,5 +218,9 @@ public class SignificantTextAggregatorTests extends AggregatorTestCase {
}
}
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/55360")
@Override
public void testSupportedFieldTypes() throws IOException {
super.testSupportedFieldTypes();
}
}

@ -125,4 +125,10 @@ public class HDRPercentileRanksAggregatorTests extends AggregatorTestCase {
assertThat(e.getMessage(), Matchers.equalTo("[values] must not be an empty array: [my_agg]"));
}
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/55360")
@Override
public void testSupportedFieldTypes() throws IOException {
super.testSupportedFieldTypes();
}
}

@ -225,4 +225,10 @@ public class HDRPercentilesAggregatorTests extends AggregatorTestCase {
}
}
}
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/55360")
@Override
public void testSupportedFieldTypes() throws IOException {
super.testSupportedFieldTypes();
}
}

@ -283,6 +283,12 @@ public class MedianAbsoluteDeviationAggregatorTests extends AggregatorTestCase {
}
}
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/55360")
@Override
public void testSupportedFieldTypes() throws IOException {
super.testSupportedFieldTypes();
}
public static class IsCloseToRelative extends TypeSafeMatcher<Double> {
private final double expected;