Skip to content

Commit 71855fb

Browse files
committed
Mute testSupportedFieldTypes in HDRPreAggregatedPercentile tests (#55369)
Relates #55360
1 parent 417d5f2 commit 71855fb

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

test/framework/src/main/java/org/elasticsearch/search/aggregations/AggregatorTestCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ protected List<String> unsupportedMappedFieldTypes() {
636636
*
637637
* Exception types/messages are not currently checked, just presence/absence of an exception.
638638
*/
639-
public final void testSupportedFieldTypes() throws IOException {
639+
public void testSupportedFieldTypes() throws IOException {
640640
MapperRegistry mapperRegistry = new IndicesModule(Collections.emptyList()).getMapperRegistry();
641641
Settings settings = Settings.builder().put("index.version.created", Version.CURRENT.id).build();
642642
String fieldName = "typeTestFieldName";

x-pack/plugin/analytics/src/test/java/org/elasticsearch/xpack/analytics/mapper/HDRPreAggregatedPercentileRanksAggregatorTests.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,4 +110,9 @@ public void testSimple() throws IOException {
110110
}
111111
}
112112

113+
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/55360")
114+
@Override
115+
public void testSupportedFieldTypes() throws IOException {
116+
super.testSupportedFieldTypes();
117+
}
113118
}

x-pack/plugin/analytics/src/test/java/org/elasticsearch/xpack/analytics/mapper/HDRPreAggregatedPercentilesAggregatorTests.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,4 +158,10 @@ private void testCase(Query query, CheckedConsumer<RandomIndexWriter, IOExceptio
158158
}
159159
}
160160
}
161+
162+
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/55360")
163+
@Override
164+
public void testSupportedFieldTypes() throws IOException {
165+
super.testSupportedFieldTypes();
166+
}
161167
}

0 commit comments

Comments
 (0)