p2p/simulations/adapters: fix error messages in TestTCPPipeBidirections (#29207)
This commit is contained in:
parent
e31709db65
commit
3dc549b3d7
@ -78,7 +78,7 @@ func TestTCPPipeBidirections(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if !bytes.Equal(expected, out) {
|
if !bytes.Equal(expected, out) {
|
||||||
t.Fatalf("expected %#v, got %#v", out, expected)
|
t.Fatalf("expected %#v, got %#v", expected, out)
|
||||||
} else {
|
} else {
|
||||||
msg := []byte(fmt.Sprintf("pong %02d", i))
|
msg := []byte(fmt.Sprintf("pong %02d", i))
|
||||||
if _, err := c2.Write(msg); err != nil {
|
if _, err := c2.Write(msg); err != nil {
|
||||||
@ -94,7 +94,7 @@ func TestTCPPipeBidirections(t *testing.T) {
|
|||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
if !bytes.Equal(expected, out) {
|
if !bytes.Equal(expected, out) {
|
||||||
t.Fatalf("expected %#v, got %#v", out, expected)
|
t.Fatalf("expected %#v, got %#v", expected, out)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user