mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-15 01:32:55 -07:00
Fixed build
This commit is contained in:
parent
0ad573a98a
commit
2e316c51d2
1 changed files with 2 additions and 1 deletions
|
@ -17,6 +17,7 @@ using Ombi.Store.Entities;
|
|||
using Ombi.Store.Entities.Requests;
|
||||
using Ombi.Store.Repository;
|
||||
using Ombi.Store.Repository.Requests;
|
||||
using Ombi.Helpers;
|
||||
|
||||
namespace Ombi.Schedule.Tests
|
||||
{
|
||||
|
@ -53,7 +54,7 @@ namespace Ombi.Schedule.Tests
|
|||
ImdbId = "test"
|
||||
};
|
||||
_movie.Setup(x => x.GetAll()).Returns(new List<MovieRequests> { request }.AsQueryable());
|
||||
_repo.Setup(x => x.Get("test")).ReturnsAsync(new PlexServerContent());
|
||||
_repo.Setup(x => x.Get("test", ProviderType.ImdbId)).ReturnsAsync(new PlexServerContent());
|
||||
|
||||
await Checker.Execute(null);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue