Rename Sonarr References in Backend

This commit is contained in:
Qstick 2017-10-30 22:25:19 -04:00
parent c333ca4161
commit 1451a63c06
12 changed files with 20 additions and 20 deletions

View file

@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
@ -168,14 +168,14 @@ namespace NzbDrone.Common.Test.Http
}
var request = new HttpRequestBuilder($"http://{_httpBinHost}/redirect-to")
.AddQueryParam("url", $"https://sonarr.tv/")
.AddQueryParam("url", $"https://lidarr.audio/")
.Build();
request.AllowAutoRedirect = true;
var response = Subject.Get(request);
response.StatusCode.Should().Be(HttpStatusCode.OK);
response.Content.Should().Contain("Sonarr");
response.Content.Should().Contain("Lidarr");
ExceptionVerification.ExpectedErrors(0);
}