Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/78ef0d6fb03b2aceccbe85b72bf49005bd0204aa You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed broken in queue test for nzbget

pull/3113/head
Mark McDowall 11 years ago
parent 55a808a87b
commit 78ef0d6fb0

@ -24,6 +24,10 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.NzbgetTests
_queue = Builder<NzbgetQueueItem>.CreateListOfSize(5)
.All()
.With(q => q.NzbName = "30.Rock.S01E01.Pilot.720p.hdtv.nzb")
.With(q => q.Parameters = new List<NzbgetParameter>
{
new NzbgetParameter { Name = "drone", Value = "id" }
})
.Build()
.ToList();

Loading…
Cancel
Save