We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eae5ae5 commit c5f3c5cCopy full SHA for c5f3c5c
src/test/java/fr/pilato/test/elasticsearch/hlclient/EsClientIT.java
@@ -432,7 +432,7 @@ void rangeQuery() throws IOException {
432
client.indices().refresh(rr -> rr.index(indexName));
433
SearchResponse<ObjectNode> response = client.search(sr -> sr.index(indexName)
434
.query(q -> q.range(rq -> rq
435
- .number(nrq -> nrq.field("foo").gt(0.0).lt(1.0))
+ .number(nrq -> nrq.field("foo").gte(0.0).lt(1.0))
436
))
437
, ObjectNode.class);
438
assertNotNull(response.hits().total());
0 commit comments