Skip to content

Commit

Permalink
Fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
costin committed Jun 4, 2024
1 parent c6f1e1a commit 8a8fd73
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ public void testScoreOnNumeric() {
search test [
| score count > 40 and count < 46
]
| keep count, score
| keep count, _score
| sort count
""")) {
assertThat(results.columns(), equalTo(List.of(new ColumnInfo("count", "long"), new ColumnInfo("score", "double"))));
assertThat(results.columns(), equalTo(List.of(new ColumnInfo("count", "long"), new ColumnInfo("_score", "double"))));
assertThat(getValuesList(results).size(), equalTo(40));
assertThat(getValuesList(results).get(0).get(0), equalTo(1));
}
Expand Down

0 comments on commit 8a8fd73

Please sign in to comment.