More Fun in Core with Naming

This commit is contained in:
Qstick
2020-05-18 23:28:26 -04:00
committed by ta264
parent b0e966418e
commit 307989aab7
122 changed files with 1084 additions and 1198 deletions
@@ -44,19 +44,19 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests
protected virtual RemoteBook CreateRemoteAlbum()
{
var remoteAlbum = new RemoteBook();
remoteAlbum.Release = new ReleaseInfo();
remoteAlbum.Release.Title = _title;
remoteAlbum.Release.DownloadUrl = _downloadUrl;
remoteAlbum.Release.DownloadProtocol = Subject.Protocol;
var remoteBook = new RemoteBook();
remoteBook.Release = new ReleaseInfo();
remoteBook.Release.Title = _title;
remoteBook.Release.DownloadUrl = _downloadUrl;
remoteBook.Release.DownloadProtocol = Subject.Protocol;
remoteAlbum.ParsedBookInfo = new ParsedBookInfo();
remoteBook.ParsedBookInfo = new ParsedBookInfo();
remoteAlbum.Books = new List<Book>();
remoteBook.Books = new List<Book>();
remoteAlbum.Author = new Author();
remoteBook.Author = new Author();
return remoteAlbum;
return remoteBook;
}
protected void VerifyIdentifiable(DownloadClientItem downloadClientItem)