Blob Blame History Raw
diff -up redis-2.3.2/redis_test.go.orig redis-2.3.2/redis_test.go
--- redis-2.3.2/redis_test.go.orig	2020-08-08 02:18:53.968445826 +0200
+++ redis-2.3.2/redis_test.go	2020-08-08 02:18:35.037468667 +0200
@@ -445,7 +445,7 @@ func (t *RedisTest) TestStringCmdHelpers
 
 func (t *RedisTest) TestAuth(c *C) {
 	auth := t.client.Auth("password")
-	c.Assert(auth.Err(), ErrorMatches, "ERR Client sent AUTH, but no password is set")
+	c.Assert(auth.Err(), ErrorMatches, "ERR AUTH <password> called without any password configured for the default user\\. Are you sure your configuration is correct\\?")
 	c.Assert(auth.Val(), Equals, "")
 }