From: Daniel Martí Date: Tue, 27 Aug 2019 17:09:56 +0000 (+0000) Subject: Revert "net/url: fail TestParseErrors test when getting an unwanted error" X-Git-Tag: go1.14beta1~1348 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=72e71b90f3e808900279433c581af272d5b9afa4;p=gostls13.git Revert "net/url: fail TestParseErrors test when getting an unwanted error" This reverts https://golang.org/cl/185080. Reason for revert: some new changes are erroring again, so this broke the builders. Change-Id: I28da16da98b90cefbb47173d31bbbb56e43062d5 Reviewed-on: https://go-review.googlesource.com/c/go/+/191781 Run-TryBot: Daniel Martí TryBot-Result: Gobot Gobot Reviewed-by: Emmanuel Odeke --- diff --git a/src/net/url/url_test.go b/src/net/url/url_test.go index b86956906d..e83c86c424 100644 --- a/src/net/url/url_test.go +++ b/src/net/url/url_test.go @@ -1456,7 +1456,7 @@ func TestParseErrors(t *testing.T) { continue } if err != nil { - t.Errorf("Parse(%q) = %v; want no error", tt.in, err) + t.Logf("Parse(%q) = %v; want no error", tt.in, err) } } }