Skip to content

Commit bab8a83

Browse files
committed
Merge branch '6.2.x'
2 parents b6de2b0 + 9de2b94 commit bab8a83

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

framework-platform/framework-platform.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ dependencies {
1515
api(platform("io.rsocket:rsocket-bom:1.1.4"))
1616
api(platform("org.apache.groovy:groovy-bom:4.0.24"))
1717
api(platform("org.apache.logging.log4j:log4j-bom:3.0.0-beta3"))
18-
api(platform("org.assertj:assertj-bom:3.27.0"))
18+
api(platform("org.assertj:assertj-bom:3.27.1"))
1919
api(platform("org.eclipse.jetty:jetty-bom:12.0.15"))
2020
api(platform("org.eclipse.jetty.ee10:jetty-ee10-bom:12.0.15"))
2121
api(platform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0"))
2222
api(platform("org.jetbrains.kotlinx:kotlinx-serialization-bom:1.7.3"))
2323
api(platform("org.junit:junit-bom:5.11.4"))
24-
api(platform("org.mockito:mockito-bom:5.14.2"))
24+
api(platform("org.mockito:mockito-bom:5.15.2"))
2525

2626
constraints {
2727
api("com.fasterxml:aalto-xml:1.3.2")

spring-aop/src/test/java/org/springframework/aop/framework/AbstractProxyExceptionHandlingTests.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ void targetThrowsUndeclaredCheckedException() throws DeclaredCheckedException {
9797
assertThat(throwableSeenByInterceptor).isSameAs(undeclaredCheckedException);
9898
assertThat(throwableSeenByCaller)
9999
.isInstanceOf(UndeclaredThrowableException.class)
100-
.hasCauseReference(undeclaredCheckedException);
100+
.cause().isSameAs(undeclaredCheckedException);
101101
}
102102

103103
@Test
@@ -145,7 +145,7 @@ void targetThrowsUndeclaredCheckedException() throws DeclaredCheckedException {
145145
invokeProxy();
146146
assertThat(throwableSeenByCaller)
147147
.isInstanceOf(UndeclaredThrowableException.class)
148-
.hasCauseReference(undeclaredCheckedException);
148+
.cause().isSameAs(undeclaredCheckedException);
149149
}
150150

151151
@Test

0 commit comments

Comments
 (0)