From 498c841eb9300c548c972b3814cc2abcbc8a0ec9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Magiera?= Date: Wed, 14 Feb 2018 16:04:14 +0100 Subject: [PATCH] Skip TestMdnsDiscovery --- p2p/discovery/mdns_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/p2p/discovery/mdns_test.go b/p2p/discovery/mdns_test.go index 5bbfd52695..579fc5bf69 100644 --- a/p2p/discovery/mdns_test.go +++ b/p2p/discovery/mdns_test.go @@ -22,6 +22,9 @@ func (n *DiscoveryNotifee) HandlePeerFound(pi pstore.PeerInfo) { } func TestMdnsDiscovery(t *testing.T) { + //TODO: re-enable when the new lib will get integrated + t.Skip("TestMdnsDiscovery fails randomly with current lib") + ctx, cancel := context.WithCancel(context.Background()) defer cancel()