Skip to content

Commit

Permalink
iter
Browse files Browse the repository at this point in the history
  • Loading branch information
javanna committed Dec 18, 2024
1 parent 8f9ec9b commit 7c8b931
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,11 @@ public void testDefaultConfiguration() throws IOException {
}

public void testDefaultDocValueConfigurationOnPre8_4() throws IOException {
// TODO verify which version this test is actually valid for (when PR is actually merged)
IndexVersion oldVersion = IndexVersionUtils.randomVersionBetween(random(), IndexVersions.MINIMUM_COMPATIBLE, IndexVersions.V_8_3_0);
IndexVersion oldVersion = IndexVersionUtils.randomVersionBetween(
random(),
IndexVersions.MINIMUM_READONLY_COMPATIBLE,
IndexVersions.V_8_3_0
);
DocumentMapper defaultMapper = createDocumentMapper(oldVersion, fieldMapping(this::minimalMapping));
Mapper fieldMapper = defaultMapper.mappers().getMapper(FIELD_NAME);
assertThat(fieldMapper, instanceOf(fieldMapperClass()));
Expand Down

0 comments on commit 7c8b931

Please sign in to comment.