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 @@ -396,12 +396,6 @@ tests:
- class: org.elasticsearch.packaging.test.DockerTests
method: test010Install
issue: https://github.com/elastic/elasticsearch/issues/131376
- class: org.elasticsearch.compute.lucene.read.ValuesSourceReaderOperatorTests
method: testLoadLongShuffledManySegments
issue: https://github.com/elastic/elasticsearch/issues/132258
- class: org.elasticsearch.compute.lucene.read.ValuesSourceReaderOperatorTests
method: testLoadLongManySegments
issue: https://github.com/elastic/elasticsearch/issues/132258
- class: org.elasticsearch.packaging.test.DockerTests
method: test151MachineDependentHeapWithSizeOverride
issue: https://github.com/elastic/elasticsearch/issues/123437
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,7 @@ private void testLoadLong(boolean shuffle, boolean manySegments) throws IOExcept

DriverContext driverContext = driverContext();
List<Page> input = CannedSourceOperator.collectPages(sourceOperator(driverContext, numDocs));
assertThat(reader.leaves(), hasSize(manySegments ? greaterThan(5) : equalTo(1)));
assertThat(reader.leaves(), hasSize(manySegments ? greaterThan(1) : equalTo(1)));
assertThat(input, hasSize(reader.leaves().size()));
if (manySegments) {
input = List.of(CannedSourceOperator.mergePages(input));
Expand Down