File tree 1 file changed +3
-3
lines changed
x-pack/plugin/core/src/test/java/org/elasticsearch/xpack/core/rollup
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ public static DateHistoGroupConfig.Builder getDateHisto() {
94
94
if (ESTestCase .randomBoolean ()) {
95
95
dateHistoBuilder .setDelay (new DateHistogramInterval (randomPositiveTimeValue ()));
96
96
}
97
- dateHistoBuilder .setField (ESTestCase .randomAlphaOfLengthBetween (1 , 10 ));
97
+ dateHistoBuilder .setField (ESTestCase .randomAlphaOfLengthBetween (5 , 10 ));
98
98
return dateHistoBuilder ;
99
99
}
100
100
@@ -112,8 +112,8 @@ public static TermsGroupConfig.Builder getTerms() {
112
112
}
113
113
114
114
public static List <String > getFields () {
115
- return IntStream .range (0 , ESTestCase .randomIntBetween (1 ,10 ))
116
- .mapToObj (n -> ESTestCase .randomAlphaOfLengthBetween (1 , 10 ))
115
+ return IntStream .range (0 , ESTestCase .randomIntBetween (1 , 10 ))
116
+ .mapToObj (n -> ESTestCase .randomAlphaOfLengthBetween (5 , 10 ))
117
117
.collect (Collectors .toList ());
118
118
}
119
119
You can’t perform that action at this time.
0 commit comments