1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-05 23:57:20 +02: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 @@ public void Setup()
_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();