mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-16 21:16:37 +00:00
p2p/discover: fix test error messages (#29592)
This commit is contained in:
parent
2e06fbd409
commit
98f504f69f
1 changed files with 2 additions and 2 deletions
|
|
@ -282,12 +282,12 @@ func TestUDPv4_findnode(t *testing.T) {
|
||||||
waitNeighbors := func(want []*node) {
|
waitNeighbors := func(want []*node) {
|
||||||
test.waitPacketOut(func(p *v4wire.Neighbors, to *net.UDPAddr, hash []byte) {
|
test.waitPacketOut(func(p *v4wire.Neighbors, to *net.UDPAddr, hash []byte) {
|
||||||
if len(p.Nodes) != len(want) {
|
if len(p.Nodes) != len(want) {
|
||||||
t.Errorf("wrong number of results: got %d, want %d", len(p.Nodes), bucketSize)
|
t.Errorf("wrong number of results: got %d, want %d", len(p.Nodes), len(want))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
for i, n := range p.Nodes {
|
for i, n := range p.Nodes {
|
||||||
if n.ID.ID() != want[i].ID() {
|
if n.ID.ID() != want[i].ID() {
|
||||||
t.Errorf("result mismatch at %d:\n got: %v\n want: %v", i, n, expected.entries[i])
|
t.Errorf("result mismatch at %d:\n got: %v\n want: %v", i, n, expected.entries[i])
|
||||||
}
|
}
|
||||||
if !live[n.ID.ID()] {
|
if !live[n.ID.ID()] {
|
||||||
t.Errorf("result includes dead node %v", n.ID.ID())
|
t.Errorf("result includes dead node %v", n.ID.ID())
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue