Mute testSupportedFieldTypes in HDRPreAggregatedPercentile tests (#55369)

Relates #55360
This commit is contained in:
Tanguy Leroux 2020-04-17 10:49:05 +02:00
parent 417d5f2009
commit 71855fbfe0
3 changed files with 12 additions and 1 deletions

View File

@ -636,7 +636,7 @@ public abstract class AggregatorTestCase extends ESTestCase {
*
* Exception types/messages are not currently checked, just presence/absence of an exception.
*/
public final void testSupportedFieldTypes() throws IOException {
public void testSupportedFieldTypes() throws IOException {
MapperRegistry mapperRegistry = new IndicesModule(Collections.emptyList()).getMapperRegistry();
Settings settings = Settings.builder().put("index.version.created", Version.CURRENT.id).build();
String fieldName = "typeTestFieldName";

View File

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

View File

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