Skip to content

Commit 4a9b7ce

Browse files
committed
Fixed broken fuzzer
1 parent 89da479 commit 4a9b7ce

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

fuzz/fuzz.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,17 @@ package fuzz
44

55
import (
66
"context"
7+
"github.com/go-redis/redis"
78
"time"
89
)
910

1011
var (
1112
ctx = context.Background()
12-
rdb *Client
13+
rdb *redis.Client
1314
)
1415

1516
func init() {
16-
rdb = NewClient(&Options{
17+
rdb = redis.NewClient(&redis.Options{
1718
Addr: ":6379",
1819
DialTimeout: 10 * time.Second,
1920
ReadTimeout: 10 * time.Second,

0 commit comments

Comments
 (0)