Skip to content

Commit ae793f2

Browse files
committed
fixup
1 parent adb6344 commit ae793f2

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

muted-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -510,9 +510,6 @@ tests:
510510
- class: org.elasticsearch.xpack.ml.integration.ClassificationIT
511511
method: testWithCustomFeatureProcessors
512512
issue: https://github.com/elastic/elasticsearch/issues/134001
513-
- class: org.elasticsearch.xpack.esql.action.RandomizedTimeSeriesIT
514-
method: testRateGroupBySubset
515-
issue: https://github.com/elastic/elasticsearch/issues/134019
516513
- class: org.elasticsearch.cluster.ClusterInfoServiceIT
517514
method: testMaxQueueLatenciesInClusterInfo
518515
issue: https://github.com/elastic/elasticsearch/issues/134088

x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/TSDataGenerationHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ private static Object randomDimensionValue(String dimensionName) {
5555
this.numDocs = numDocs;
5656
var maxAttributes = (int) Math.sqrt(numDocs);
5757
List<String> tempAttributeSet = List.copyOf(
58-
Set.copyOf(ESTestCase.randomList(1, maxAttributes, () -> ESTestCase.randomAlphaOfLengthBetween(2, 30)))
58+
Set.copyOf(ESTestCase.randomList(1, maxAttributes, () -> ESTestCase.randomAlphaOfLengthBetween(3, 30)))
5959
);
6060
var maxTimeSeries = (int) Math.sqrt(numDocs);
6161
var minTimeSeries = Math.max(1, maxTimeSeries / 4);

0 commit comments

Comments
 (0)