Fix typos in test code

This commit fixes typos in test class names, test method names, and
test variable names.

Closes gh-28807
This commit is contained in:
Marc Wrobel
2022-07-12 20:11:17 +02:00
committed by Sam Brannen
parent 2e4d7e4ef9
commit bd3499671c
19 changed files with 32 additions and 32 deletions

View File

@@ -336,7 +336,7 @@ public class WebMvcConfigurationSupportTests {
}
@Test
public void defaultThemeResolverfiguration() {
public void defaultThemeResolverConfiguration() {
ApplicationContext context = initContext(WebConfig.class);
ThemeResolver themeResolver = context.getBean(THEME_RESOLVER_BEAN_NAME, ThemeResolver.class);

View File

@@ -185,7 +185,7 @@ class RequestMappingInfoTests {
}
@Test
void compareToWithImpicitVsExplicitHttpMethodDeclaration() {
void compareToWithImplicitVsExplicitHttpMethodDeclaration() {
RequestMappingInfo noMethods = RequestMappingInfo.paths().build();
RequestMappingInfo oneMethod = RequestMappingInfo.paths().methods(GET).build();
RequestMappingInfo oneMethodOneParam = RequestMappingInfo.paths().methods(GET).params("foo").build();

View File

@@ -223,7 +223,7 @@ public class UrlTagTests extends AbstractTagTests {
}
@Test
public void createQueryStringOneParamForExsistingQueryString() throws JspException {
public void createQueryStringOneParamForExistingQueryString() throws JspException {
List<Param> params = new ArrayList<>();
Set<String> usedParams = new HashSet<>();