Skip to content

Commit d5c3233

Browse files
committed
Merge branch '1.5.x'
2 parents e3c3bb0 + ac316b5 commit d5c3233

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-boot-tests/spring-boot-integration-tests/spring-boot-server-tests/src/test/java/org/springframework/boot/context/embedded/AbstractEmbeddedServletContainerIntegrationTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
import java.util.List;
2323
import java.util.Map;
2424

25-
import org.codehaus.plexus.util.StringUtils;
2625
import org.junit.ClassRule;
2726
import org.junit.Rule;
2827
import org.junit.rules.TemporaryFolder;
2928

3029
import org.springframework.http.client.ClientHttpResponse;
30+
import org.springframework.util.StringUtils;
3131
import org.springframework.web.client.ResponseErrorHandler;
3232
import org.springframework.web.client.RestTemplate;
3333
import org.springframework.web.util.UriTemplateHandler;
@@ -66,7 +66,7 @@ private static List<Object> createParameters(String packaging, String container,
6666
AbstractApplicationLauncher launcher = launcherClass
6767
.getDeclaredConstructor(ApplicationBuilder.class)
6868
.newInstance(applicationBuilder);
69-
String name = StringUtils.capitalise(container) + ": "
69+
String name = StringUtils.capitalize(container) + ": "
7070
+ launcher.getDescription(packaging);
7171
parameters.add(new Object[] { name, launcher });
7272
}

0 commit comments

Comments
 (0)