Skip to content

Commit

Permalink
Remove duplicate fetch
Browse files Browse the repository at this point in the history
Signed-off-by: Harsha Vamsi Kalluri <[email protected]>
  • Loading branch information
harshavamsi committed Aug 20, 2024
1 parent 9dcc87e commit 641a217
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 641a217

Please sign in to comment.