aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--p2p/nat/nat_test.go3
1 files changed, 1 insertions, 2 deletions
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)
}
}