@ -658,6 +658,13 @@ func TestRedis_HyperLogLog(t *testing.T) {
assert.NotNil(t, err)
_, err = store.Pfcount("key")
runOnCluster(t, func(cluster Store) {
_, err := cluster.Pfadd("key")
_, err = cluster.Pfcount("key")
})
}
func runOnCluster(t *testing.T, fn func(cluster Store)) {