mirror of
https://github.com/redis/go-redis.git
synced 2025-06-12 14:21:52 +03:00
Use the right redis client in tests
This commit is contained in:
committed by
Vladimir Mihailenco
parent
5ed546f303
commit
eca1bb6b36
@ -290,18 +290,18 @@ var _ = Describe("Client", func() {
|
||||
|
||||
It("should set and scan time", func() {
|
||||
tm := time.Now()
|
||||
err := rdb.Set(ctx, "now", tm, 0).Err()
|
||||
err := client.Set(ctx, "now", tm, 0).Err()
|
||||
Expect(err).NotTo(HaveOccurred())
|
||||
|
||||
var tm2 time.Time
|
||||
err = rdb.Get(ctx, "now").Scan(&tm2)
|
||||
err = client.Get(ctx, "now").Scan(&tm2)
|
||||
Expect(err).NotTo(HaveOccurred())
|
||||
|
||||
Expect(tm2).To(BeTemporally("==", tm))
|
||||
})
|
||||
|
||||
It("should Conn", func() {
|
||||
err := rdb.Conn(ctx).Get(ctx, "this-key-does-not-exist").Err()
|
||||
err := client.Conn(ctx).Get(ctx, "this-key-does-not-exist").Err()
|
||||
Expect(err).To(Equal(redis.Nil))
|
||||
})
|
||||
})
|
||||
|
Reference in New Issue
Block a user