p2p/protocols: disable XTestMultiplePeersDropSelf and XTestMultiplePeersDropOther

This commit is contained in:
Anton Evangelatov 2018-02-14 15:50:47 +01:00
parent 3871a86945
commit baa7bef57d

View file

@ -360,14 +360,14 @@ func runMultiplePeers(t *testing.T, peer int, errs ...error) {
}
func TestMultiplePeersDropSelf(t *testing.T) {
func XTestMultiplePeersDropSelf(t *testing.T) {
runMultiplePeers(t, 0,
fmt.Errorf("subprotocol error"),
fmt.Errorf("Message handler error: (msg code 3): dropped"),
)
}
func TestMultiplePeersDropOther(t *testing.T) {
func XTestMultiplePeersDropOther(t *testing.T) {
runMultiplePeers(t, 1,
fmt.Errorf("Message handler error: (msg code 3): dropped"),
fmt.Errorf("subprotocol error"),