Start building against Spring Framework 5.3.0.RC1 SNAPSHOTs

See gh-23170
This commit is contained in:
Brian Clozel 2020-09-02 17:47:06 +02:00
parent ed1c9f5e4e
commit f50927f7a1
2 changed files with 2 additions and 4 deletions

View File

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

View File

@ -1198,9 +1198,7 @@ class SpringApplicationTests {
.filter((invocation) -> invocation.getMethod().toString().contains("start(")).count();
long endCount = mockingDetails(startupStep).getInvocations().stream()
.filter((invocation) -> invocation.getMethod().toString().contains("end(")).count();
assertThat(startCount).isEqualTo(endCount + 1); // Will be same after
// spring-framework #25572 is
// fixed
assertThat(startCount).isEqualTo(endCount);
}
private <S extends AvailabilityState> ArgumentMatcher<ApplicationEvent> isAvailabilityChangeEventWithState(