We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38253fa commit 0f85c0aCopy full SHA for 0f85c0a
1 file changed
src/test/java/io/redis/examples/HyperLogLogExample.java
@@ -4,6 +4,7 @@
4
import org.junit.Assert;
5
import org.junit.Test;
6
import redis.clients.jedis.UnifiedJedis;
7
+
8
public class HyperLogLogExample {
9
10
@Test
@@ -29,12 +30,12 @@ public void run() {
29
30
String res4 = jedis.pfmerge("all_bikes", "bikes", "commuter_bikes");
31
System.out.println(res4); // >>> OK
32
- long res5 = jedis.pfcount("all_bikes");
33
- System.out.println(res5); // >>> 6
34
- // STEP_END
35
-
36
// REMOVE_START
37
Assert.assertEquals("OK", res4);
38
// REMOVE_END
+ long res5 = jedis.pfcount("all_bikes");
+ System.out.println(res5); // >>> 6
39
+ // STEP_END
40
}
41
0 commit comments