1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-17 10:45:49 +02:00

Disable test on mono managed http.

This commit is contained in:
Taloth Saldono 2017-08-01 19:51:29 +02:00
parent f305331565
commit fdaa8fb0f5

View File

@ -147,6 +147,11 @@ public void should_follow_redirects()
[Test]
public void should_follow_redirects_to_https()
{
if (typeof(TDispatcher) == typeof(ManagedHttpDispatcher) && PlatformInfo.IsMono)
{
Assert.Ignore("Will fail on tls1.2 via managed dispatcher, ignore.");
}
var request = new HttpRequestBuilder($"http://{_httpBinHost}/redirect-to")
.AddQueryParam("url", $"https://sonarr.tv/")
.Build();