1
0
mirror of https://github.com/golang/go synced 2024-11-24 10:30:10 -07:00

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í <mvdan@mvdan.cc>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com>
This commit is contained in:
Daniel Martí 2019-08-27 17:09:56 +00:00
parent 1a432f27d5
commit 72e71b90f3

View File

@ -1456,7 +1456,7 @@ func TestParseErrors(t *testing.T) {
continue continue
} }
if err != nil { 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)
} }
} }
} }