mirror of
https://github.com/redis/go-redis.git
synced 2025-08-08 23:42:06 +03:00
Merge pull request #690 from beono/beono/fmtquotes
removed quotes surrounding %q
This commit is contained in:
@@ -71,7 +71,7 @@ func TestParseURL(t *testing.T) {
|
||||
t.Run(c.u, func(t *testing.T) {
|
||||
o, err := ParseURL(c.u)
|
||||
if c.err == nil && err != nil {
|
||||
t.Fatalf("unexpected error: '%q'", err)
|
||||
t.Fatalf("unexpected error: %q", err)
|
||||
return
|
||||
}
|
||||
if c.err != nil && err != nil {
|
||||
|
Reference in New Issue
Block a user