diff --git a/BTCPayServer.Tests/UnitTest1.cs b/BTCPayServer.Tests/UnitTest1.cs index 9d44ef4e3..70847219a 100644 --- a/BTCPayServer.Tests/UnitTest1.cs +++ b/BTCPayServer.Tests/UnitTest1.cs @@ -370,9 +370,8 @@ namespace BTCPayServer.Tests foreach (var match in regex.Matches(text).OfType()) { var url = match.Groups[1].Value; - if (urlBlacklist.Any(a => a.StartsWith(url.ToLowerInvariant()))) + if (urlBlacklist.Any(a => url.StartsWith(a.ToLowerInvariant()))) continue; - checkLinks.Add(AssertLinkNotDead(httpClient, url, file)); }