Skip to content

Commit

Permalink
fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
jimczi committed Nov 18, 2024
1 parent 93f677f commit 759e76d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public void testBulkOperations() throws Exception {
SearchSourceBuilder sourceBuilder = new SearchSourceBuilder().size(0).trackTotalHits(true);
SearchResponse searchResponse = client().search(new SearchRequest(INDEX_NAME).source(sourceBuilder)).get();
try {
assertThat(searchResponse.getHits().getTotalHits().value(), equalTo((long) ids.size()));
assertThat(searchResponse.getHits().getTotalHits().value, equalTo((long) ids.size()));
} finally {
searchResponse.decRef();
}
Expand Down

0 comments on commit 759e76d

Please sign in to comment.