Skip to content

Commit a533f4f

Browse files
committed
Polish
1 parent f767a45 commit a533f4f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ void shouldConfigureWebSocketBeans() {
151151
}
152152

153153
@Test
154-
void routerFunctionShouldHaveOrderZero() throws Exception {
154+
void routerFunctionShouldHaveOrderZero() {
155155
this.contextRunner.withUserConfiguration(CustomRouterFunctions.class).run((context) -> {
156156
Map<String, ?> beans = context.getBeansOfType(RouterFunction.class);
157157
Object[] ordered = context.getBeanProvider(RouterFunction.class).orderedStream().toArray();

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ void shouldConfigureWebSocketBeans() {
158158
}
159159

160160
@Test
161-
void routerFunctionShouldHaveOrderZero() throws Exception {
161+
void routerFunctionShouldHaveOrderZero() {
162162
this.contextRunner.withUserConfiguration(CustomRouterFunctions.class).run((context) -> {
163163
Map<String, ?> beans = context.getBeansOfType(RouterFunction.class);
164164
Object[] ordered = context.getBeanProvider(RouterFunction.class).orderedStream().toArray();

0 commit comments

Comments
 (0)