From: Brad Fitzpatrick Date: Mon, 6 Jan 2020 15:46:42 +0000 (+0000) Subject: net: update renamed test name in comment X-Git-Tag: go1.14rc1~171 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=0a61a195d78bd3bfb70434633c6d130d77aba6ae;p=gostls13.git net: update renamed test name in comment TestSelfConnect from CL 5650071 was renamed TestTCPSelfConnect in CL 21447. Change-Id: I0de110dbe1da77bfba540a1b51c139f3bedae67f Reviewed-on: https://go-review.googlesource.com/c/go/+/213437 Reviewed-by: Tobias Klauser --- diff --git a/src/net/dial_test.go b/src/net/dial_test.go index ae40079f85..493cdfc648 100644 --- a/src/net/dial_test.go +++ b/src/net/dial_test.go @@ -174,7 +174,7 @@ func dialClosedPort(t *testing.T) (actual, expected time.Duration) { } addr := l.Addr().String() l.Close() - // On OpenBSD, interference from TestSelfConnect is mysteriously + // On OpenBSD, interference from TestTCPSelfConnect is mysteriously // causing the first attempt to hang for a few seconds, so we throw // away the first result and keep the second. for i := 1; ; i++ {