Skip to content

Commit

Permalink
iter
Browse files Browse the repository at this point in the history
  • Loading branch information
pmpailis committed Oct 3, 2024
1 parent fb39147 commit 56ea798
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,6 @@ tests:
- class: org.elasticsearch.xpack.ml.integration.MlJobIT
method: testMultiIndexDelete
issue: https://github.com/elastic/elasticsearch/issues/112381
- class: org.elasticsearch.search.retriever.RankDocRetrieverBuilderIT
method: testRankDocsRetrieverWithNestedQuery
issue: https://github.com/elastic/elasticsearch/issues/112421
- class: org.elasticsearch.xpack.esql.expression.function.aggregate.SpatialCentroidTests
method: "testAggregateIntermediate {TestCase=<geo_point> #2}"
issue: https://github.com/elastic/elasticsearch/issues/112461
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -455,9 +455,9 @@ public void testRankDocsRetrieverWithNestedQuery() {
assertThat(resp.getHits().getAt(0).getId(), equalTo("doc_6"));
assertThat(resp.getHits().getAt(1).getId(), equalTo("doc_2"));
assertThat(resp.getHits().getAt(2).getId(), equalTo("doc_1"));
assertThat(resp.getHits().getAt(3).getId(), equalTo("doc_7"));
assertThat(resp.getHits().getAt(3).getId(), equalTo("doc_3"));
assertThat(resp.getHits().getAt(4).getId(), equalTo("doc_4"));
assertThat(resp.getHits().getAt(5).getId(), equalTo("doc_3"));
assertThat(resp.getHits().getAt(5).getId(), equalTo("doc_7"));
});
}

Expand Down

0 comments on commit 56ea798

Please sign in to comment.