diff --git a/muted-tests.yml b/muted-tests.yml index b289634c2459b..82c9f5ef3dfbf 100644 --- a/muted-tests.yml +++ b/muted-tests.yml @@ -333,9 +333,6 @@ tests: - class: org.elasticsearch.smoketest.MlWithSecurityIT method: test {yaml=ml/3rd_party_deployment/Test start deployment fails while model download in progress} issue: https://github.com/elastic/elasticsearch/issues/120814 -- class: org.elasticsearch.xpack.esql.plugin.MatchOperatorIT - method: testScoring_Zero_OutsideQuery - issue: https://github.com/elastic/elasticsearch/issues/124132 - class: org.elasticsearch.search.query.QueryPhaseTimeoutTests method: testScorerTimeoutPoints issue: https://github.com/elastic/elasticsearch/issues/124140 diff --git a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/plugin/MatchOperatorIT.java b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/plugin/MatchOperatorIT.java index 216786798ad34..392b17909ff79 100644 --- a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/plugin/MatchOperatorIT.java +++ b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/plugin/MatchOperatorIT.java @@ -221,7 +221,7 @@ public void testScoringOutsideQuery() { public void testScoring_Zero_OutsideQuery() { var query = """ FROM test METADATA _score - | SORT _score DESC + | SORT content DESC | KEEP content, _score """;