Fix HazelcastHealthIndicatorTests
See gh-24337
This commit is contained in:
@@ -58,7 +58,7 @@ class HazelcastHealthIndicatorTests {
|
||||
|
||||
@Test
|
||||
void hazelcastDown() {
|
||||
given(this.hazelcast.executeTransaction(any())).willReturn(new HazelcastException());
|
||||
given(this.hazelcast.executeTransaction(any())).willThrow(new HazelcastException());
|
||||
Health health = new HazelcastHealthIndicator(this.hazelcast).health();
|
||||
assertThat(health.getStatus()).isEqualTo(Status.DOWN);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user