Resolve conflicts for backport.

This commit is contained in:
Olga Maciaszek-Sharma
2022-06-28 15:02:16 +02:00
parent ff96850ec0
commit d4832788f6

View File

@@ -117,13 +117,13 @@ public class CircuitBreakerTests {
}
@Test
void testRuntimeExceptionUnwrapped() {
public void testRuntimeExceptionUnwrapped() {
assertThatExceptionOfType(UnsupportedOperationException.class)
.isThrownBy(() -> exceptionClient.getRuntimeException());
}
@Test
void testCheckedExceptionWrapped() {
public void testCheckedExceptionWrapped() {
assertThatExceptionOfType(IllegalStateException.class).isThrownBy(() -> exceptionClient.getCheckedException());
}