diff --git a/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/stress/ReplGetAllPerfTest.java b/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/stress/ReplGetAllPerfTest.java index dfa5ccde2af0..9c433598ea14 100644 --- a/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/stress/ReplGetAllPerfTest.java +++ b/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/stress/ReplGetAllPerfTest.java @@ -17,6 +17,6 @@ protected int numberOfHotRodServers() { @Override protected ConfigurationBuilder clusterConfig() { return hotRodCacheConfiguration(getDefaultClusteredCacheConfig( - CacheMode.DIST_SYNC, false)); + CacheMode.REPL_SYNC, false)); } } diff --git a/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/stress/ReplPutAllPerfTest.java b/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/stress/ReplPutAllPerfTest.java index a67cb35e2b99..92498deccdae 100644 --- a/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/stress/ReplPutAllPerfTest.java +++ b/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/stress/ReplPutAllPerfTest.java @@ -17,6 +17,6 @@ protected int numberOfHotRodServers() { @Override protected ConfigurationBuilder clusterConfig() { return hotRodCacheConfiguration(getDefaultClusteredCacheConfig( - CacheMode.DIST_SYNC, false)); + CacheMode.REPL_SYNC, false)); } }