Start building against Spring Framework 5.3.6 snapshots

See gh-25926
This commit is contained in:
Stephane Nicoll 2021-04-09 08:56:37 +02:00
parent 7a636e5c08
commit 4290e0792b
2 changed files with 2 additions and 2 deletions

View File

@ -1628,7 +1628,7 @@ bom {
]
}
}
library("Spring Framework", "5.3.5") {
library("Spring Framework", "5.3.6-SNAPSHOT") {
group("org.springframework") {
imports = [
"spring-framework-bom"

View File

@ -399,7 +399,7 @@ class ErrorPageFilterTests {
assertThat(((HttpServletResponseWrapper) this.chain.getResponse()).getStatus()).isEqualTo(500);
assertThat(this.request.getAttribute(RequestDispatcher.ERROR_STATUS_CODE)).isEqualTo(500);
assertThat(this.request.getAttribute(RequestDispatcher.ERROR_MESSAGE))
.isEqualTo("Required string parameter 'test' is not present");
.isEqualTo("Required request parameter 'test' for method parameter type string is not present");
Map<String, Object> requestAttributes = getAttributesForDispatch("/500");
assertThat(requestAttributes.get(RequestDispatcher.ERROR_EXCEPTION_TYPE))
.isEqualTo(MissingServletRequestParameterException.class);