1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-25 15:33:11 +00:00

Fixed broken in queue test for nzbget

This commit is contained in:
Mark McDowall 2014-03-20 00:39:24 -07:00
parent 55a808a87b
commit 78ef0d6fb0

View file

@ -24,6 +24,10 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.NzbgetTests
_queue = Builder<NzbgetQueueItem>.CreateListOfSize(5) _queue = Builder<NzbgetQueueItem>.CreateListOfSize(5)
.All() .All()
.With(q => q.NzbName = "30.Rock.S01E01.Pilot.720p.hdtv.nzb") .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() .Build()
.ToList(); .ToList();