Skip to content

Commit

Permalink
apply spotlessApply
Browse files Browse the repository at this point in the history
  • Loading branch information
channel-dante committed Dec 13, 2023
1 parent 15e6770 commit e3b9696
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,7 @@
public class SearchRequestTest extends ModelTestCase {
@Test
public void afterSearch() {
SearchRequest request = new SearchRequest.Builder()
.searchAfter(
FieldValue.of(1),
FieldValue.of("string")
).build();
SearchRequest request = new SearchRequest.Builder().searchAfter(FieldValue.of(1), FieldValue.of("string")).build();

assertEquals("{\"search_after\":[1,\"string\"]}", toJson(request));
}
Expand Down

0 comments on commit e3b9696

Please sign in to comment.