From a0704eddb06fad55aac5760913d69a7e7f29c157 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Thu, 22 Aug 2024 16:34:37 +0900 Subject: [PATCH] Fix tests --- BTCPayServer.Tests/ThirdPartyTests.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/BTCPayServer.Tests/ThirdPartyTests.cs b/BTCPayServer.Tests/ThirdPartyTests.cs index b71611fab..0bb476877 100644 --- a/BTCPayServer.Tests/ThirdPartyTests.cs +++ b/BTCPayServer.Tests/ThirdPartyTests.cs @@ -133,7 +133,7 @@ namespace BTCPayServer.Tests public async Task CanQueryDirectProviders() { // TODO: Check once in a while whether or not they are working again - string[] brokenShitcoinCasinos = { }; + string[] brokenShitcoinCasinos = { "binance" }; var skipped = 0; var factory = FastTests.CreateBTCPayRateFactory(); var directlySupported = factory.AvailableRateProviders.Where(s => s.Source == RateSource.Direct) @@ -272,7 +272,8 @@ namespace BTCPayServer.Tests "https://www.bitpay.com", // not allowing to be hit from circleci "https://support.bitpay.com", "https://www.coingecko.com", // unhappy service - "https://www.wasabiwallet.io" // Banning US, CI unhappy + "https://www.wasabiwallet.io", // Banning US, CI unhappy + "https://fullynoded.app" // Sometimes DNS doesn't work }; foreach (var match in regex.Matches(text).OfType())