Start building against Spring Framework 5.3.0.RC1 SNAPSHOTs
See gh-23170
This commit is contained in:
parent
ed1c9f5e4e
commit
f50927f7a1
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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(
|
||||
|
|
|
|||
Loading…
Reference in New Issue