From ab2ad746b58565d872a5a7da2ad612aa2df9838a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deleuze?= Date: Wed, 6 Sep 2023 16:01:06 +0200 Subject: [PATCH] Polish ReactorResourceFactoryTests See gh-31178 --- .../http/client/reactive/ReactorResourceFactoryTests.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-web/src/test/java/org/springframework/http/client/reactive/ReactorResourceFactoryTests.java b/spring-web/src/test/java/org/springframework/http/client/reactive/ReactorResourceFactoryTests.java index fe97eea116..d8df5423f3 100644 --- a/spring-web/src/test/java/org/springframework/http/client/reactive/ReactorResourceFactoryTests.java +++ b/spring-web/src/test/java/org/springframework/http/client/reactive/ReactorResourceFactoryTests.java @@ -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);