Commit 7224d353 authored by Sylwester Lachiewicz's avatar Sylwester Lachiewicz Committed by Stephane Nicoll

Fix typo in StringUtils import

Closes gh-11189
parent d920b49b
...@@ -24,12 +24,12 @@ import java.util.Collections; ...@@ -24,12 +24,12 @@ import java.util.Collections;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import org.codehaus.plexus.util.StringUtils;
import org.junit.ClassRule; import org.junit.ClassRule;
import org.junit.Rule; import org.junit.Rule;
import org.junit.rules.TemporaryFolder; import org.junit.rules.TemporaryFolder;
import org.springframework.http.client.ClientHttpResponse; import org.springframework.http.client.ClientHttpResponse;
import org.springframework.util.StringUtils;
import org.springframework.web.client.ResponseErrorHandler; import org.springframework.web.client.ResponseErrorHandler;
import org.springframework.web.client.RestTemplate; import org.springframework.web.client.RestTemplate;
import org.springframework.web.util.UriTemplateHandler; import org.springframework.web.util.UriTemplateHandler;
...@@ -73,7 +73,7 @@ public abstract class AbstractEmbeddedServletContainerIntegrationTests { ...@@ -73,7 +73,7 @@ public abstract class AbstractEmbeddedServletContainerIntegrationTests {
AbstractApplicationLauncher launcher = launcherClass AbstractApplicationLauncher launcher = launcherClass
.getDeclaredConstructor(ApplicationBuilder.class) .getDeclaredConstructor(ApplicationBuilder.class)
.newInstance(applicationBuilder); .newInstance(applicationBuilder);
String name = StringUtils.capitalise(container) + " " + version + ": " String name = StringUtils.capitalize(container) + " " + version + ": "
+ launcher.getDescription(packaging); + launcher.getDescription(packaging);
parameters.add(new Object[] { name, launcher }); parameters.add(new Object[] { name, launcher });
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment