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

This commit is contained in:
Péter Szilágyi 2016-12-15 16:28:31 +02:00
parent 2573094df2
commit 21fd9f037e
No known key found for this signature in database
GPG Key ID: 119A76381CCB7DD2
1 changed files with 1 additions and 2 deletions

View File

@ -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)
}
}