Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -627,9 +627,6 @@ tests:
- class: org.elasticsearch.datastreams.DataStreamIndexSettingsProviderTests
method: testGetAdditionalIndexSettingsMappingsMerging
issue: https://github.com/elastic/elasticsearch/issues/135884
- class: org.elasticsearch.xpack.esql.action.CrossClusterAsyncQueryStopIT
method: testStopQueryInlineStats
issue: https://github.com/elastic/elasticsearch/issues/135032
- class: org.elasticsearch.datastreams.DataStreamIndexSettingsProviderTests
method: testGetAdditionalIndexSettings
issue: https://github.com/elastic/elasticsearch/issues/135972
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ public void testStopQueryInlineStats() throws Exception {
// The sum could be null, if the stats did not manage to compute anything before being stopped
// Or it could be 45L if it managed to add 0-9
if (v != null) {
assertThat((long) v, equalTo(45L));
assertThat((long) v, lessThanOrEqualTo(45L));
}
v = row.next();
if (v != null) {
Expand Down