diff --git a/src/test/java/org/opensearch/plugin/insights/core/service/categorizer/QueryShapeGeneratorTests.java b/src/test/java/org/opensearch/plugin/insights/core/service/categorizer/QueryShapeGeneratorTests.java index 19ca1d3..f6b8f2a 100644 --- a/src/test/java/org/opensearch/plugin/insights/core/service/categorizer/QueryShapeGeneratorTests.java +++ b/src/test/java/org/opensearch/plugin/insights/core/service/categorizer/QueryShapeGeneratorTests.java @@ -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")));