Browse Source

Polish ReactorResourceFactoryTests

See gh-31178
pull/31186/head
Sébastien Deleuze 1 year ago
parent
commit
ab2ad746b5
  1. 6
      spring-web/src/test/java/org/springframework/http/client/reactive/ReactorResourceFactoryTests.java

6
spring-web/src/test/java/org/springframework/http/client/reactive/ReactorResourceFactoryTests.java

@ -158,7 +158,7 @@ public class ReactorResourceFactoryTests { @@ -158,7 +158,7 @@ public class ReactorResourceFactoryTests {
}
@Test
void stopThenStartWithGlobalResources() {
void restartWithGlobalResources() {
this.resourceFactory.setUseGlobalResources(true);
this.resourceFactory.afterPropertiesSet();
@ -176,7 +176,7 @@ public class ReactorResourceFactoryTests { @@ -176,7 +176,7 @@ public class ReactorResourceFactoryTests {
}
@Test
void stopThenStartWithLocalResources() {
void restartWithLocalResources() {
this.resourceFactory.setUseGlobalResources(false);
this.resourceFactory.afterPropertiesSet();
@ -200,7 +200,7 @@ public class ReactorResourceFactoryTests { @@ -200,7 +200,7 @@ public class ReactorResourceFactoryTests {
}
@Test
void stopThenStartWithExternalResources() {
void restartWithExternalResources() {
this.resourceFactory.setUseGlobalResources(false);
this.resourceFactory.setConnectionProvider(this.connectionProvider);

Loading…
Cancel
Save