From baa7bef57d665bc12cfb119b2defdafaccf0b0d8 Mon Sep 17 00:00:00 2001 From: Anton Evangelatov Date: Wed, 14 Feb 2018 15:50:47 +0100 Subject: [PATCH] p2p/protocols: disable XTestMultiplePeersDropSelf and XTestMultiplePeersDropOther --- p2p/protocols/protocol_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/p2p/protocols/protocol_test.go b/p2p/protocols/protocol_test.go index 8216bb956a..3ef05b6038 100644 --- a/p2p/protocols/protocol_test.go +++ b/p2p/protocols/protocol_test.go @@ -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"),