Mute testSupportedFieldTypes in HDRPreAggregatedPercentile tests (#55369)
Relates #55360
This commit is contained in:
parent
417d5f2009
commit
71855fbfe0
|
@ -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";
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue