Skip to content

Commit e258b6f

Browse files
authored
Fix CI error introduce as part of elastic#136870 (elastic#136982)
1 parent 567304e commit e258b6f

File tree

2 files changed

+1
-16
lines changed

2 files changed

+1
-16
lines changed

muted-tests.yml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -540,18 +540,6 @@ tests:
540540
- class: org.elasticsearch.xpack.search.CrossClusterAsyncSearchIT
541541
method: testRemoteClusterOnlyCCSWithFailuresOnAllShards
542542
issue: https://github.com/elastic/elasticsearch/issues/136894
543-
- class: org.elasticsearch.compute.aggregation.MedianAbsoluteDeviationFloatAggregatorFunctionTests
544-
method: testSimpleSmallInput
545-
issue: https://github.com/elastic/elasticsearch/issues/136902
546-
- class: org.elasticsearch.compute.aggregation.MedianAbsoluteDeviationLongAggregatorFunctionTests
547-
method: testSimpleSmallInput
548-
issue: https://github.com/elastic/elasticsearch/issues/136903
549-
- class: org.elasticsearch.compute.aggregation.MedianAbsoluteDeviationDoubleAggregatorFunctionTests
550-
method: testSimpleSmallInput
551-
issue: https://github.com/elastic/elasticsearch/issues/136904
552-
- class: org.elasticsearch.compute.aggregation.MedianAbsoluteDeviationIntAggregatorFunctionTests
553-
method: testSimpleSmallInput
554-
issue: https://github.com/elastic/elasticsearch/issues/136905
555543
- class: org.elasticsearch.xpack.esql.qa.mixed.FieldExtractorIT
556544
method: testTextFieldWithIpSubfieldMalformed {STORED}
557545
issue: https://github.com/elastic/elasticsearch/issues/136917
@@ -561,9 +549,6 @@ tests:
561549
- class: org.elasticsearch.xpack.test.rest.XPackRestIT
562550
method: test {p0=ml/sparse_vector_search/Test sparse_vector search with query vector and pruning config}
563551
issue: https://github.com/elastic/elasticsearch/issues/136061
564-
- class: org.elasticsearch.compute.operator.HashAggregationOperatorTests
565-
method: testSimpleSmallInput
566-
issue: https://github.com/elastic/elasticsearch/issues/136945
567552
- class: org.elasticsearch.xpack.esql.optimizer.rules.logical.HoistRemoteEnrichTopNTests
568553
method: testTopNSortExpressionWithinRemoteEnrichAliasing
569554
issue: https://github.com/elastic/elasticsearch/issues/136957

x-pack/plugin/esql/compute/test/src/main/java/org/elasticsearch/compute/test/OperatorTestCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public final void testSimpleSmallInput() {
7373
}
7474

7575
protected int smallInputSize() {
76-
return randomIntBetween(1, 100);
76+
return randomIntBetween(10, 100);
7777
}
7878

7979
/**

0 commit comments

Comments
 (0)