Polish ReactorResourceFactoryTests

See gh-31178
This commit is contained in:
Sébastien Deleuze 2023-09-06 16:01:06 +02:00
parent 125b8e7418
commit ab2ad746b5
1 changed files with 3 additions and 3 deletions

View File

@ -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 {
}
@Test
void stopThenStartWithLocalResources() {
void restartWithLocalResources() {
this.resourceFactory.setUseGlobalResources(false);
this.resourceFactory.afterPropertiesSet();
@ -200,7 +200,7 @@ public class ReactorResourceFactoryTests {
}
@Test
void stopThenStartWithExternalResources() {
void restartWithExternalResources() {
this.resourceFactory.setUseGlobalResources(false);
this.resourceFactory.setConnectionProvider(this.connectionProvider);