Skip to content

Commit

Permalink
test comment
Browse files Browse the repository at this point in the history
Signed-off-by: Mikhail Khludnev <mkhl@apache.org>
  • Loading branch information
mkhludnev committed Nov 26, 2024
1 parent e8e769f commit 5ff6d11
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,7 @@ public void testLessThanMaxClauses() throws IOException {
public void testExceedMaxClauses() throws IOException {
ArrayList<String> toQuery = new ArrayList<>();
String indexName = "larger";
int expectMatches = createIndex(indexName, IndexSearcher.getMaxClauseCount() + (rarely() ? 0 : atLeast(10)) // TODO + often some
// more
, toQuery);
int expectMatches = createIndex(indexName, IndexSearcher.getMaxClauseCount() + (rarely() ? 0 : atLeast(10)), toQuery);
assertTermsHitCount(indexName, "addr", toQuery, expectMatches);
assertTermsHitCount(indexName, "addr.idx", toQuery, expectMatches);
try { // error from mapper/parser
Expand Down

0 comments on commit 5ff6d11

Please sign in to comment.