Skip to content

Commit 9110abe

Browse files
committed
remove no commit
1 parent 8c91da5 commit 9110abe

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/framework/src/main/java/org/elasticsearch/datageneration/datasource/DefaultMappingParametersHandler.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,9 @@ private Supplier<Map<String, Object>> keywordMapping(DataSourceRequest.LeafMappi
102102
if (ESTestCase.randomDouble() <= 0.2) {
103103
mapping.put("null_value", ESTestCase.randomAlphaOfLengthBetween(0, 10));
104104
}
105-
// NOCOMMIT - randomize this
106-
mapping.put("normalizer", "lowercase");
105+
if (ESTestCase.randomBoolean()) {
106+
mapping.put("normalizer", "lowercase");
107+
}
107108
return mapping;
108109
};
109110
}

0 commit comments

Comments
 (0)