Skip to content

Commit 0645341

Browse files
authored
fix test testDefaultDocValueConfigurationOnPre7_8 after backporting (#55648)
1 parent cbc9c7a commit 0645341

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

x-pack/plugin/spatial/src/test/java/org/elasticsearch/xpack/spatial/index/mapper/GeoShapeWithDocValuesFieldMapperTests.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,15 +85,14 @@ public void testDefaultConfiguration() throws IOException {
8585
assertTrue(geoShapeFieldMapper.fieldType().hasDocValues());
8686
}
8787

88-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/55644")
8988
public void testDefaultDocValueConfigurationOnPre7_8() throws IOException {
9089
String mapping = Strings.toString(XContentFactory.jsonBuilder().startObject().startObject("type1")
9190
.startObject("properties").startObject("location")
9291
.field("type", "geo_shape")
9392
.endObject().endObject()
9493
.endObject().endObject());
9594

96-
Version oldVersion = VersionUtils.randomVersionBetween(random(), Version.V_7_0_0, Version.V_7_8_0);
95+
Version oldVersion = VersionUtils.randomVersionBetween(random(), Version.V_7_0_0, Version.V_7_7_0);
9796
DocumentMapper defaultMapper = createIndex("test", settings(oldVersion).build()).mapperService().documentMapperParser()
9897
.parse("type1", new CompressedXContent(mapping));
9998
Mapper fieldMapper = defaultMapper.mappers().getMapper("location");

0 commit comments

Comments
 (0)