Skip to content

Commit

Permalink
fix test cases to pass after strict numbers change
Browse files Browse the repository at this point in the history
  • Loading branch information
mdavis95 committed Aug 23, 2023
1 parent fb59ccc commit 06ac528
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ public void confirm() throws Exception {
search = new Search(STAT_TEST_INDEX);
search.addStat(new StatFacet("rating", "pathFacet"));
search.addQuery(new FilterQuery("\"something really special\"").addQueryField("title"));
search.addQuery(new FilterQuery("authorCount:[4 TO 4.1]"));
search.addQuery(new FilterQuery("authorCount:4"));
search.addQuery(new FilterQuery("rating:[2 TO 3]").exclude());
searchResult = zuliaWorkPool.search(search);
Assertions.assertEquals(repeatCount, searchResult.getTotalHits());
Expand Down

0 comments on commit 06ac528

Please sign in to comment.