Skip to content

Commit 3ced369

Browse files
authored
Looks like we can't expect a specific number here (#136431)
1 parent 30e36ff commit 3ced369

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
@@ -567,9 +567,6 @@ tests:
567567
- class: org.elasticsearch.xpack.esql.action.EsqlActionBreakerIT
568568
method: testTopNPushedToLuceneOnSortedIndex
569569
issue: https://github.com/elastic/elasticsearch/issues/135939
570-
- class: org.elasticsearch.xpack.esql.action.CrossClusterAsyncQueryStopIT
571-
method: testStopQueryInlineStats
572-
issue: https://github.com/elastic/elasticsearch/issues/135032
573570
- class: org.elasticsearch.xpack.ml.integration.RegressionIT
574571
method: testAliasFields
575572
issue: https://github.com/elastic/elasticsearch/issues/135996

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ public void testStopQueryInlineStats() throws Exception {
318318
// The sum could be null, if the stats did not manage to compute anything before being stopped
319319
// Or it could be 45L if it managed to add 0-9
320320
if (v != null) {
321-
assertThat((long) v, equalTo(45L));
321+
assertThat((long) v, lessThanOrEqualTo(45L));
322322
}
323323
v = row.next();
324324
if (v != null) {

0 commit comments

Comments
 (0)