Merge branch '5.3.x'

This commit is contained in:
Sam Brannen
2022-07-13 16:36:01 +02:00
19 changed files with 32 additions and 32 deletions

View File

@@ -335,7 +335,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

@@ -184,7 +184,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

@@ -222,7 +222,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<>();