Skip to content

Commit

Permalink
Fix range test
Browse files Browse the repository at this point in the history
Signed-off-by: Harsha Vamsi Kalluri <[email protected]>
  • Loading branch information
harshavamsi committed Jul 25, 2024
1 parent aba3460 commit aa83853
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,6 @@ public void testDateRangeQueryFormat() throws IOException {
assertThat(parsedQuery, instanceOf(IndexOrDocValuesQuery.class));
parsedQuery = ((IndexOrDocValuesQuery) parsedQuery).getIndexQuery();
assertThat(parsedQuery, instanceOf(ApproximateScoreQuery.class));
assertThat(query, instanceOf(ApproximateScoreQuery.class));
Query originalQuery = ((ApproximateScoreQuery) parsedQuery).getOriginalQuery();
assertThat(originalQuery, instanceOf(PointRangeQuery.class));
Query approximateQuery = ((ApproximateScoreQuery) parsedQuery).getApproximationQuery();
Expand Down

0 comments on commit aa83853

Please sign in to comment.