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:
parent
55a808a87b
commit
78ef0d6fb0
1 changed files with 4 additions and 0 deletions
|
@ -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();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue