p2p/nat: fix a bytes based net.IP comparison

parent 2573094d
...@@ -17,7 +17,6 @@ ...@@ -17,7 +17,6 @@
package nat package nat
import ( import (
"bytes"
"net" "net"
"testing" "testing"
"time" "time"
...@@ -56,7 +55,7 @@ func TestAutoDiscRace(t *testing.T) { ...@@ -56,7 +55,7 @@ func TestAutoDiscRace(t *testing.T) {
t.Errorf("result %d: unexpected error: %v", i, rval.err) t.Errorf("result %d: unexpected error: %v", i, rval.err)
} }
wantIP := net.IP{33, 44, 55, 66} 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) t.Errorf("result %d: got IP %v, want %v", i, rval.ip, wantIP)
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment