From 21fd9f037e38dbfa5e34366f2106e31cede50d4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Thu, 15 Dec 2016 16:28:31 +0200 Subject: p2p/nat: fix a bytes based net.IP comparison --- p2p/nat/nat_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'p2p') diff --git a/p2p/nat/nat_test.go b/p2p/nat/nat_test.go index a079e7a22..469101e99 100644 --- a/p2p/nat/nat_test.go +++ b/p2p/nat/nat_test.go @@ -17,7 +17,6 @@ package nat import ( - "bytes" "net" "testing" "time" @@ -56,7 +55,7 @@ func TestAutoDiscRace(t *testing.T) { t.Errorf("result %d: unexpected error: %v", i, rval.err) } wantIP := net.IP{33, 44, 55, 66} - if !bytes.Equal(rval.ip, wantIP) { + if !rval.ip.Equal(wantIP) { t.Errorf("result %d: got IP %v, want %v", i, rval.ip, wantIP) } } -- cgit v1.2.3