Skip to content

Commit

Permalink
apply spotless
Browse files Browse the repository at this point in the history
Signed-off-by: channel-dante <[email protected]>
  • Loading branch information
channel-dante committed Jan 2, 2024
1 parent a77ea50 commit 66c2454
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ public void afterSearch() {
assertEquals("{\"search_after\":[1,\"string\"]}", toJson(request));
}

@Test
public void toBuilder() {
SearchRequest origin = new SearchRequest.Builder().index("index").build();
SearchRequest copied = origin.toBuilder().build();
@Test
public void toBuilder() {
SearchRequest origin = new SearchRequest.Builder().index("index").build();
SearchRequest copied = origin.toBuilder().build();

assertEquals(copied.index(), origin.index());
}
assertEquals(copied.index(), origin.index());
}
}

0 comments on commit 66c2454

Please sign in to comment.