From 80bdb7b25867f98fe00851c7e9d59c13fdb4598a Mon Sep 17 00:00:00 2001 From: soup Date: Sat, 11 Oct 2025 20:16:41 +0200 Subject: [PATCH] Fix ReleasePushControllerFixture --- .../v3/Indexers/ReleasePushControllerFixture.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/NzbDrone.Api.Test/v3/Indexers/ReleasePushControllerFixture.cs b/src/NzbDrone.Api.Test/v3/Indexers/ReleasePushControllerFixture.cs index 948a1b5a9..041df5197 100644 --- a/src/NzbDrone.Api.Test/v3/Indexers/ReleasePushControllerFixture.cs +++ b/src/NzbDrone.Api.Test/v3/Indexers/ReleasePushControllerFixture.cs @@ -7,6 +7,7 @@ using NUnit.Framework; using NzbDrone.Core.Datastore; using NzbDrone.Core.Download; +using NzbDrone.Core.Indexers; using NzbDrone.Core.Profiles.Qualities; using NzbDrone.Core.Qualities; using NzbDrone.Test.Common; @@ -35,7 +36,7 @@ public void SetupController() Mocker.SetConstant(LogManager.GetLogger(nameof(ReleasePushControllerFixture))); Mocker.GetMock() - .Setup(x => x.GetDefaultProfile(It.IsAny())) + .Setup(x => x.GetDefaultProfile(It.IsAny(), It.IsAny(), It.IsAny())) .Returns(qualityProfile); }