p2p/discover: fix panicky test (#25038)

pull/25044/head
Martin Holst Swende 3 years ago committed by GitHub
parent 5e8fa1da70
commit 403624a4a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      p2p/discover/v4_udp_test.go

@ -284,6 +284,7 @@ func TestUDPv4_findnode(t *testing.T) {
test.waitPacketOut(func(p *v4wire.Neighbors, to *net.UDPAddr, hash []byte) {
if len(p.Nodes) != len(want) {
t.Errorf("wrong number of results: got %d, want %d", len(p.Nodes), bucketSize)
return
}
for i, n := range p.Nodes {
if n.ID.ID() != want[i].ID() {

Loading…
Cancel
Save