mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
Cleanup Conflicts in Sonarr/Lidarr Pulls
Co-Authored-By: Robin Dadswell <19610103+RobinDadswell@users.noreply.github.com>
This commit is contained in:
@@ -30,17 +30,17 @@ namespace NzbDrone.Core.Test.QueueTests
|
||||
.With(v => v.DownloadClientInfo = downloadClientInfo)
|
||||
.Build();
|
||||
|
||||
var artist = Builder<Author>.CreateNew()
|
||||
var author = Builder<Author>.CreateNew()
|
||||
.Build();
|
||||
|
||||
var albums = Builder<Book>.CreateListOfSize(3)
|
||||
var books = Builder<Book>.CreateListOfSize(3)
|
||||
.All()
|
||||
.With(e => e.AuthorId = artist.Id)
|
||||
.With(e => e.AuthorId = author.Id)
|
||||
.Build();
|
||||
|
||||
var remoteBook = Builder<RemoteBook>.CreateNew()
|
||||
.With(r => r.Author = artist)
|
||||
.With(r => r.Books = new List<Book>(albums))
|
||||
.With(r => r.Author = author)
|
||||
.With(r => r.Books = new List<Book>(books))
|
||||
.With(r => r.ParsedBookInfo = new ParsedBookInfo())
|
||||
.Build();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user