Skip to content

Commit

Permalink
Fixing spotless violations
Browse files Browse the repository at this point in the history
Signed-off-by: Ankit Jain <akjain@amazon.com>
  • Loading branch information
jainankitk committed Oct 10, 2024
1 parent 482db81 commit da2e3dd
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,10 @@ public void testFieldWithGeoPointType() throws IOException {
}

public void testFieldWithBinaryType() throws IOException {
setUpMockMappings(successfulSearchShardIndices.iterator().next(), Map.of("properties", Map.of("binaryField", Map.of("type", "binary"))));
setUpMockMappings(
successfulSearchShardIndices.iterator().next(),
Map.of("properties", Map.of("binaryField", Map.of("type", "binary")))
);

SearchSourceBuilder sourceBuilder = SearchSourceBuilderUtils.createQuerySearchSourceBuilder()
.query(boolQuery().must(termQuery("binaryField", "base64EncodedString")));
Expand Down

0 comments on commit da2e3dd

Please sign in to comment.