diff --git a/PlexRequests.UI.Tests/AdminModuleTests.cs b/PlexRequests.UI.Tests/AdminModuleTests.cs index e10594a71..8e5ebbdc4 100644 --- a/PlexRequests.UI.Tests/AdminModuleTests.cs +++ b/PlexRequests.UI.Tests/AdminModuleTests.cs @@ -57,6 +57,7 @@ namespace PlexRequests.UI.Tests private Mock PlexMock { get; set; } private Mock SonarrApiMock { get; set; } private Mock PushbulletApi { get; set; } + private Mock CpApi { get; set; } private ConfigurableBootstrapper Bootstrapper { get; set; } @@ -79,6 +80,7 @@ namespace PlexRequests.UI.Tests EmailMock = new Mock>(); PushbulletApi = new Mock(); PushbulletSettings = new Mock>(); + CpApi = new Mock(); Bootstrapper = new ConfigurableBootstrapper(with => { @@ -93,6 +95,7 @@ namespace PlexRequests.UI.Tests with.Dependency(EmailMock.Object); with.Dependency(PushbulletApi.Object); with.Dependency(PushbulletSettings.Object); + with.Dependency(CpApi.Object); with.RootPathProvider(); with.RequestStartup((container, pipelines, context) => {