Skip to content

Commit d635c7c

Browse files
committed
Fix formatting (take 2)
1 parent b288d82 commit d635c7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/pulsar/PulsarConfigurationTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,10 +341,10 @@ void whenHasDefaultsTenantAndNamespaceAppliedToTopicBuilder() {
341341
this.contextRunner.withPropertyValues(properties.toArray(String[]::new))
342342
.run((context) -> assertThat(context).getBean(PulsarTopicBuilder.class)
343343
.asInstanceOf(InstanceOfAssertFactories.type(PulsarTopicBuilder.class))
344-
.satisfies((topicBuilder -> {
344+
.satisfies((topicBuilder) -> {
345345
assertThat(topicBuilder).hasFieldOrPropertyWithValue("defaultTenant", "my-tenant");
346346
assertThat(topicBuilder).hasFieldOrPropertyWithValue("defaultNamespace", "my-namespace");
347-
})));
347+
}));
348348
}
349349

350350
}

0 commit comments

Comments
 (0)