Skip to content

Commit

Permalink
apply spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
channel-dante committed Jan 2, 2024
1 parent 673922c commit cbceb9d
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 cbceb9d

Please sign in to comment.