From 722c39a6ffe6efa173c79efeff82428f21933185 Mon Sep 17 00:00:00 2001 From: Dennis Reimann Date: Tue, 8 Mar 2022 09:44:30 +0100 Subject: [PATCH] Exclude ChainCoin in rate provider test --- BTCPayServer.Tests/ThirdPartyTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer.Tests/ThirdPartyTests.cs b/BTCPayServer.Tests/ThirdPartyTests.cs index 96f740d3d..8086de2ba 100644 --- a/BTCPayServer.Tests/ThirdPartyTests.cs +++ b/BTCPayServer.Tests/ThirdPartyTests.cs @@ -254,7 +254,7 @@ namespace BTCPayServer.Tests [Fact] public void CanGetRateCryptoCurrenciesByDefault() { - string[] brokenShitcoins = { "BTX_USD" }; + string[] brokenShitcoins = { "BTX_USD", "CHC_USD" }; var provider = new BTCPayNetworkProvider(ChainName.Mainnet); var factory = FastTests.CreateBTCPayRateFactory(); var fetcher = new RateFetcher(factory);