1
0
mirror of https://github.com/redis/go-redis.git synced 2025-08-07 12:42:55 +03:00

Fix build

This commit is contained in:
Vladimir Mihailenco
2020-06-29 15:16:05 +03:00
parent 9c3799ce57
commit 5fec34b901
2 changed files with 7 additions and 3 deletions

View File

@@ -180,7 +180,8 @@ var _ = Describe("Redis Ring", func() {
ring = redis.NewRing(opts)
err := ring.Ping().Err()
Expect(err).To(MatchError("ERR Client sent AUTH, but no password is set"))
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(ContainSubstring("ERR AUTH"))
})
It("can be initialized with a passwords map, one for each shard", func() {
@@ -192,7 +193,8 @@ var _ = Describe("Redis Ring", func() {
ring = redis.NewRing(opts)
err := ring.Ping().Err()
Expect(err).To(MatchError("ERR Client sent AUTH, but no password is set"))
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(ContainSubstring("ERR AUTH"))
})
})