Merge pull request #690 from beono/beono/fmtquotes

removed quotes surrounding %q
This commit is contained in:
Vladimir Mihailenco 2018-01-04 14:45:42 +02:00 committed by GitHub
commit ce05aa5775
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 {