Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: Siddhant Deshmukh <[email protected]>
  • Loading branch information
deshsidd committed Oct 11, 2023
1 parent c52659f commit 26a7498
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public void testNoOpsVisitor() {

List<QueryBuilder> visitedQueries = new ArrayList<>();
QueryBuilderVisitor qbv = createTestVisitor(visitedQueries);
boolQueryBuilder.visit(qbv, 0);
boolQueryBuilder.visit(qbv);
QueryBuilderVisitor subQbv = qbv.getChildVisitor(BooleanClause.Occur.MUST_NOT);
assertEquals(0, visitedQueries.size());
assertEquals(qbv, subQbv);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2301,6 +2301,7 @@ public void onFailure(final Exception e) {
List.of(),
client
),
null,
null
)
);
Expand Down

0 comments on commit 26a7498

Please sign in to comment.