From fbd5df9c6fec9119c8036bf5664a27afb35a08ec Mon Sep 17 00:00:00 2001 From: Googler Date: Thu, 16 Aug 2018 15:32:42 -0700 Subject: Internal change. PiperOrigin-RevId: 209060862 Change-Id: I2cd02f0032b80d0087110095548b1a8ffa696ac2 --- pkg/tcpip/tcpip.go | 2 +- pkg/tcpip/transport/tcp/tcp_test.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'pkg/tcpip') diff --git a/pkg/tcpip/tcpip.go b/pkg/tcpip/tcpip.go index af0aec85c..bea73def9 100644 --- a/pkg/tcpip/tcpip.go +++ b/pkg/tcpip/tcpip.go @@ -578,7 +578,7 @@ var danglingEndpoints = make(map[Endpoint]struct{}) func GetDanglingEndpoints() []Endpoint { es := make([]Endpoint, 0, len(danglingEndpoints)) danglingEndpointsMu.Lock() - for e, _ := range danglingEndpoints { + for e := range danglingEndpoints { es = append(es, e) } danglingEndpointsMu.Unlock() diff --git a/pkg/tcpip/transport/tcp/tcp_test.go b/pkg/tcpip/transport/tcp/tcp_test.go index 11410b050..74318c012 100644 --- a/pkg/tcpip/transport/tcp/tcp_test.go +++ b/pkg/tcpip/transport/tcp/tcp_test.go @@ -2949,13 +2949,13 @@ func TestTCPEndpointProbe(t *testing.T) { // We don't do an extensive validation of every field but a // basic sanity test. if got, want := state.ID.LocalAddress, tcpip.Address(context.StackAddr); got != want { - t.Fatalf("unexpected LocalAddress got: %d, want: %d", got, want) + t.Fatalf("unexpected LocalAddress got: %q, want: %q", got, want) } if got, want := state.ID.LocalPort, c.Port; got != want { t.Fatalf("unexpected LocalPort got: %d, want: %d", got, want) } if got, want := state.ID.RemoteAddress, tcpip.Address(context.TestAddr); got != want { - t.Fatalf("unexpected RemoteAddress got: %d, want: %d", got, want) + t.Fatalf("unexpected RemoteAddress got: %q, want: %q", got, want) } if got, want := state.ID.RemotePort, uint16(context.TestPort); got != want { t.Fatalf("unexpected RemotePort got: %d, want: %d", got, want) -- cgit v1.2.3