Skip to content

Commit 7883248

Browse files
committed
Fix formatting
1 parent 5a0c263 commit 7883248

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/graphql/GraphQlAutoConfigurationTests.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -237,15 +237,15 @@ void whenApplicationTaskExecutorIsDefinedThenAnnotatedControllerConfigurerShould
237237
void whenCustomExecutorIsDefinedThenAnnotatedControllerConfigurerDoesNotUseIt() {
238238
this.contextRunner.withUserConfiguration(CustomExecutorConfiguration.class).run((context) -> {
239239
AnnotatedControllerConfigurer annotatedControllerConfigurer = context
240-
.getBean(AnnotatedControllerConfigurer.class);
240+
.getBean(AnnotatedControllerConfigurer.class);
241241
assertThat(annotatedControllerConfigurer).extracting("executor").isNull();
242242
});
243243
}
244244

245245
@Test
246246
void whenAHandlerMethodArgumentResolverIsDefinedThenAnnotatedControllerConfigurerShouldUseIt() {
247-
this.contextRunner.withUserConfiguration(CustomHandlerMethodArgumentResolverConfiguration.class).run((context) -> assertThat(context
248-
.getBean(AnnotatedControllerConfigurer.class))
247+
this.contextRunner.withUserConfiguration(CustomHandlerMethodArgumentResolverConfiguration.class)
248+
.run((context) -> assertThat(context.getBean(AnnotatedControllerConfigurer.class))
249249
.extracting("customArgumentResolvers")
250250
.asInstanceOf(InstanceOfAssertFactories.LIST)
251251
.hasSize(1));
@@ -352,6 +352,7 @@ static class CustomHandlerMethodArgumentResolverConfiguration {
352352
HandlerMethodArgumentResolver customHandlerMethodArgumentResolver() {
353353
return mock(HandlerMethodArgumentResolver.class);
354354
}
355+
355356
}
356357

357358
}

0 commit comments

Comments
 (0)