Skip to content

Commit 1edf100

Browse files
authored
Looks like we can't expect a specific number here (#136431) (#136435)
(cherry picked from commit 3ced369) # Conflicts: # muted-tests.yml
1 parent 1efb94a commit 1edf100

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
@@ -627,9 +627,6 @@ tests:
627627
- class: org.elasticsearch.datastreams.DataStreamIndexSettingsProviderTests
628628
method: testGetAdditionalIndexSettingsMappingsMerging
629629
issue: https://github.com/elastic/elasticsearch/issues/135884
630-
- class: org.elasticsearch.xpack.esql.action.CrossClusterAsyncQueryStopIT
631-
method: testStopQueryInlineStats
632-
issue: https://github.com/elastic/elasticsearch/issues/135032
633630
- class: org.elasticsearch.datastreams.DataStreamIndexSettingsProviderTests
634631
method: testGetAdditionalIndexSettings
635632
issue: https://github.com/elastic/elasticsearch/issues/135972

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)