mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
More Fun in Core with Naming
This commit is contained in:
@@ -34,7 +34,7 @@ namespace NzbDrone.Core.Test.QueueTests
|
||||
.With(e => e.AuthorId = artist.Id)
|
||||
.Build();
|
||||
|
||||
var remoteAlbum = Builder<RemoteBook>.CreateNew()
|
||||
var remoteBook = Builder<RemoteBook>.CreateNew()
|
||||
.With(r => r.Author = artist)
|
||||
.With(r => r.Books = new List<Book>(albums))
|
||||
.With(r => r.ParsedBookInfo = new ParsedBookInfo())
|
||||
@@ -43,7 +43,7 @@ namespace NzbDrone.Core.Test.QueueTests
|
||||
_trackedDownloads = Builder<TrackedDownload>.CreateListOfSize(1)
|
||||
.All()
|
||||
.With(v => v.DownloadItem = downloadItem)
|
||||
.With(v => v.RemoteBook = remoteAlbum)
|
||||
.With(v => v.RemoteBook = remoteBook)
|
||||
.Build()
|
||||
.ToList();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user