Skip to content

Commit

Permalink
Fix spotless issue
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Nied <[email protected]>
  • Loading branch information
peternied committed Nov 28, 2023
1 parent cc53284 commit 8009505
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,8 @@ public void testMapperDynamicAllowedIgnored() {
final List<Function<Settings.Builder, Settings.Builder>> scenarios = List.of(
(builder) -> builder.putNull(MapperService.INDEX_MAPPER_DYNAMIC_SETTING.getKey()),
(builder) -> builder.put(MapperService.INDEX_MAPPER_DYNAMIC_SETTING.getKey(), true),
(builder) -> builder.put(MapperService.INDEX_MAPPER_DYNAMIC_SETTING.getKey(), false));
(builder) -> builder.put(MapperService.INDEX_MAPPER_DYNAMIC_SETTING.getKey(), false)
);

for (int i = 0; i < scenarios.size(); i++) {
final Settings.Builder defaultSettingsBuilder = Settings.builder()
Expand Down

0 comments on commit 8009505

Please sign in to comment.