From ebf2c30b6c3900bfcc779db44cf3f9ed74c319d0 Mon Sep 17 00:00:00 2001 From: tycho garen Date: Thu, 16 Jun 2022 12:21:29 -0400 Subject: [PATCH] add skip --- internal/p2p/peermanager_scoring_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/p2p/peermanager_scoring_test.go b/internal/p2p/peermanager_scoring_test.go index 1368bdf9c..b454da151 100644 --- a/internal/p2p/peermanager_scoring_test.go +++ b/internal/p2p/peermanager_scoring_test.go @@ -114,6 +114,8 @@ func makeMockPeerStore(t *testing.T, peers ...peerInfo) *peerStore { func TestPeerRanking(t *testing.T) { t.Run("InactiveSecond", func(t *testing.T) { + t.Skip("inactive status is not currently factored into peer rank.") + store := makeMockPeerStore(t, peerInfo{ID: "second", Inactive: true}, peerInfo{ID: "first", Inactive: false},