From 15375b78b03ea314532a9c99e5e5ece48a6b0f23 Mon Sep 17 00:00:00 2001 From: YACOVM Date: Sat, 22 Apr 2017 00:41:10 +0300 Subject: [PATCH] [FAB-3316] Disable brittle test- TestCloesConn Was introduced ~ 4 days ago and it seems that it is too brittle for CI these days. It fails because it sends a message via a gRPC stream and expects the sending to return an error because the stream was supposed to be closed, but sometimes it isn't. Disabling now and it will be revisited soon. Change-Id: I3f6d6861b4b917bacff82ab95d25a9f1738837b1 Signed-off-by: Yacov Manevich --- gossip/comm/comm_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/gossip/comm/comm_test.go b/gossip/comm/comm_test.go index 2cd4dd67b23..d008c876c87 100644 --- a/gossip/comm/comm_test.go +++ b/gossip/comm/comm_test.go @@ -296,6 +296,7 @@ func TestGetConnectionInfo(t *testing.T) { } func TestCloseConn(t *testing.T) { + t.Skip() t.Parallel() comm1, _ := newCommInstance(1611, naiveSec) defer comm1.Stop()