mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
Method, Variable, Class Renames in Readarr.Api
This commit is contained in:
@@ -26,7 +26,7 @@ namespace NzbDrone.Core.Test.IndexerSearchTests
|
||||
.Returns(_artist);
|
||||
|
||||
Mocker.GetMock<ISearchForNzb>()
|
||||
.Setup(s => s.ArtistSearch(_artist.Id, false, true, false))
|
||||
.Setup(s => s.AuthorSearch(_artist.Id, false, true, false))
|
||||
.Returns(new List<DownloadDecision>());
|
||||
|
||||
Mocker.GetMock<IProcessDownloadDecisions>()
|
||||
@@ -46,7 +46,7 @@ namespace NzbDrone.Core.Test.IndexerSearchTests
|
||||
Subject.Execute(new AuthorSearchCommand { AuthorId = _artist.Id, Trigger = CommandTrigger.Manual });
|
||||
|
||||
Mocker.GetMock<ISearchForNzb>()
|
||||
.Verify(v => v.ArtistSearch(_artist.Id, false, true, false),
|
||||
.Verify(v => v.AuthorSearch(_artist.Id, false, true, false),
|
||||
Times.Exactly(_artist.Books.Value.Count(s => s.Monitored)));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user