Skip to content

Commit 347c651

Browse files
committed
Merge remote-tracking branch 'carlosdelest/bugfix/esql-fix-scoring-full-text-functions' into bugfix/esql-fix-scoring-full-text-functions
2 parents f932406 + 5f25b97 commit 347c651

File tree

1 file changed

+1
-6
lines changed
  • x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/plugin

1 file changed

+1
-6
lines changed

x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/plugin/ScoringIT.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -327,12 +327,7 @@ public void testDisjunctionScoringWithNot() {
327327

328328
try (var resp = run(query)) {
329329
// Matches NOT gets 0.0
330-
assertThat(getValuesList(resp), equalTo(List.of(
331-
List.of(2, 0.0),
332-
List.of(3, 0.0),
333-
List.of(4, 0.0),
334-
List.of(5, 0.0)
335-
)));
330+
assertThat(getValuesList(resp), equalTo(List.of(List.of(2, 0.0), List.of(3, 0.0), List.of(4, 0.0), List.of(5, 0.0))));
336331
}
337332
}
338333

0 commit comments

Comments
 (0)