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
6 changes: 0 additions & 6 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -531,9 +531,6 @@ tests:
- class: org.elasticsearch.xpack.esql.expression.function.scalar.score.DecayTests
method: "testEvaluateBlockWithNulls {TestCase=<integer>, <integer>, <integer>, <_source> #2}"
issue: https://github.com/elastic/elasticsearch/issues/134679
- class: org.elasticsearch.search.vectors.CachingEnableFilterQueryTests
method: testTermQuery
issue: https://github.com/elastic/elasticsearch/issues/134723
- class: org.elasticsearch.discovery.DiscoveryDisruptionIT
method: testElectMasterWithLatestVersion
issue: https://github.com/elastic/elasticsearch/issues/134748
Expand Down Expand Up @@ -597,9 +594,6 @@ tests:
- class: org.elasticsearch.cluster.routing.allocation.allocator.DesiredBalanceComputerTests
method: testDesiredBalanceShouldConvergeInABigCluster
issue: https://github.com/elastic/elasticsearch/issues/135123
- class: org.elasticsearch.search.vectors.CachingEnableFilterQueryTests
method: testBooleanQuery
issue: https://github.com/elastic/elasticsearch/issues/135124
- class: org.elasticsearch.xpack.test.rest.XPackRestIT
method: test {p0=transform/transforms_start_stop/Test stop transform with force and wait_for_checkpoint true}
issue: https://github.com/elastic/elasticsearch/issues/135135
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public void testTermQuery() throws IOException {
}
iw.addDocument(doc);
}
iw.forceMerge(1);

try (IndexReader reader = iw.getReader()) {
assertTrue(reader.leaves().size() == 1 && reader.hasDeletions() == false);
Expand Down Expand Up @@ -89,6 +90,7 @@ public void testBooleanQuery() throws IOException {
doc.add(newStringField("f2", "bar", Field.Store.YES));
iw.addDocument(doc);
}
iw.forceMerge(1);

try (IndexReader reader = iw.getReader()) {
assertTrue(reader.leaves().size() == 1 && reader.hasDeletions() == false);
Expand Down