diff --git a/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/cache/peer/SpringBootApacheGeodePeerCacheApplicationIntegrationTests.java b/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/cache/peer/SpringBootApacheGeodePeerCacheApplicationIntegrationTests.java index dea1a4ab..eb7a7960 100644 --- a/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/cache/peer/SpringBootApacheGeodePeerCacheApplicationIntegrationTests.java +++ b/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/cache/peer/SpringBootApacheGeodePeerCacheApplicationIntegrationTests.java @@ -67,7 +67,7 @@ public class SpringBootApacheGeodePeerCacheApplicationIntegrationTests extends I public void peerCacheWithPeerLocalRegionAreAvailable() { Optional.ofNullable(this.peerCache) - .map(it -> assertThat(GemfireUtils.isClient(it)).isFalse()) + .map(it -> assertThat(GemfireUtils.isPeer(it)).isTrue()) .orElseThrow(() -> newIllegalStateException("Peer cache was null")); Region example = this.peerCache.getRegion("/Example");