1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 20:12:41 +02:00

Fixed tests in DownloadServiceFixture

(cherry picked from commit d743a8f7e9eac348b4679919f60af5b27457acfd)
This commit is contained in:
Mark McDowall 2023-05-20 21:15:10 -07:00 committed by Bogdan
parent 99d865ee4a
commit 0f34948c00

View File

@ -32,7 +32,7 @@ public void Setup()
Mocker.GetMock<IProvideDownloadClient>()
.Setup(v => v.GetDownloadClient(It.IsAny<DownloadProtocol>(), It.IsAny<int>(), It.IsAny<bool>()))
.Returns<DownloadProtocol, int>((v, i) => _downloadClients.FirstOrDefault(d => d.Protocol == v));
.Returns<DownloadProtocol, int, bool>((v, i, f) => _downloadClients.FirstOrDefault(d => d.Protocol == v));
var releaseInfo = Builder<ReleaseInfo>.CreateNew()
.With(v => v.DownloadProtocol = DownloadProtocol.Usenet)