Skip to content

Commit c1ab165

Browse files
0introbradfitz
authored andcommitted
net/http: enable TestTransportRemovesDeadIdleConnections on Plan 9
This issue has been fixed in CL 31390. Fixes #15464. Change-Id: I35e088f37bf3b544100ff131c72690bcfd788e5b Reviewed-on: https://go-review.googlesource.com/31393 Reviewed-by: Brad Fitzpatrick <[email protected]> Run-TryBot: Brad Fitzpatrick <[email protected]> TryBot-Result: Gobot Gobot <[email protected]>
1 parent 8a255cb commit c1ab165

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/net/http/transport_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -441,9 +441,6 @@ func TestTransportMaxPerHostIdleConns(t *testing.T) {
441441
}
442442

443443
func TestTransportRemovesDeadIdleConnections(t *testing.T) {
444-
if runtime.GOOS == "plan9" {
445-
t.Skip("skipping test; see https://golang.org/issue/15464")
446-
}
447444
defer afterTest(t)
448445
ts := httptest.NewServer(HandlerFunc(func(w ResponseWriter, r *Request) {
449446
io.WriteString(w, r.RemoteAddr)

0 commit comments

Comments
 (0)