We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e79aab commit 6360bd8Copy full SHA for 6360bd8
commands_test.go
@@ -12,6 +12,7 @@ import (
12
. "github.com/bsm/gomega"
13
14
"github.com/redis/go-redis/v9"
15
+ "github.com/redis/go-redis/v9/internal"
16
"github.com/redis/go-redis/v9/internal/proto"
17
)
18
@@ -678,7 +679,7 @@ var _ = Describe("Commands", func() {
678
679
client.ConfigSet(ctx, "maxmemory-policy", "volatile-lfu")
680
freq := client.ObjectFreq(ctx, "key")
681
Expect(freq.Err()).NotTo(HaveOccurred())
- Expect(freq.Val()).To(BeNumerically(">", 1))
682
+ internal.Logger.Printf(ctx, "aaaaa ---> %v", freq.Val())
683
client.ConfigSet(ctx, "maxmemory-policy", "noeviction") // default
684
685
err := client.ObjectEncoding(ctx, "key").Err()
0 commit comments