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 @@ -474,9 +474,6 @@ tests:
- class: org.elasticsearch.packaging.test.TemporaryDirectoryConfigTests
method: test21AcceptsCustomPathInDocker
issue: https://github.com/elastic/elasticsearch/issues/128114
- class: org.elasticsearch.xpack.esql.qa.single_node.PushQueriesIT
method: testEqualityAndOther {semantic_text}
issue: https://github.com/elastic/elasticsearch/issues/128414
- class: org.elasticsearch.xpack.ml.integration.InferenceIngestIT
method: testPipelineIngestWithModelAliases
issue: https://github.com/elastic/elasticsearch/issues/128417
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,10 @@ public void testEqualityAndOther() throws IOException {
* single_value_match is here because there are extra documents hiding in the index
* that don't have the `foo` field.
*/
List.of("#foo:[1 TO 1] #single_value_match(foo) #FieldExistsQuery [field=_primary_term]", "foo:[1 TO 1]");
List.of(
"#foo:[1 TO 1] #single_value_match(foo) #FieldExistsQuery [field=_primary_term]",
"#foo:[1 TO 1] #FieldExistsQuery [field=_primary_term]"
);
default -> throw new UnsupportedOperationException("unknown type [" + type + "]");
};
boolean filterInCompute = switch (type) {
Expand Down