From a09a682f0910add7492924c0f0bde314f23f9a1a Mon Sep 17 00:00:00 2001 From: Marcos Nils Date: Tue, 14 Jan 2014 16:00:22 -0300 Subject: [PATCH] Remove sysout prints from test --- .../clients/jedis/tests/commands/ClusterCommandsTest.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/test/java/redis/clients/jedis/tests/commands/ClusterCommandsTest.java b/src/test/java/redis/clients/jedis/tests/commands/ClusterCommandsTest.java index 91a0d78..8de59a7 100644 --- a/src/test/java/redis/clients/jedis/tests/commands/ClusterCommandsTest.java +++ b/src/test/java/redis/clients/jedis/tests/commands/ClusterCommandsTest.java @@ -41,8 +41,6 @@ public class ClusterCommandsTest extends JedisTestBase { public static void removeSlots() throws InterruptedException { //This is to wait for gossip to replicate data. waitForEqualClusterSize(); - System.out.println(node1.clusterInfo()); - System.out.println(node2.clusterInfo()); String[] nodes = node1.clusterNodes().split("\n"); String node1Id = nodes[0].split(" ")[0]; node1.clusterDelSlots(1,2,3,4,5,500); @@ -50,8 +48,6 @@ public class ClusterCommandsTest extends JedisTestBase { node1.clusterDelSlots(5000, 10000); node1.clusterDelSlots(6000); node2.clusterDelSlots(6000,1,2,3,4,5,500,5000); - System.out.println(node1.clusterNodes()); - System.out.println(node2.clusterNodes()); } private static void waitForEqualClusterSize() throws InterruptedException {