1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-31 11:32:07 +00:00

Fixed broken tests

This commit is contained in:
Mark McDowall 2012-08-25 12:31:17 -07:00
parent 39aa5065bb
commit 5437f7599a

View file

@ -48,6 +48,10 @@ namespace NzbDrone.Core.Test.ProviderTests.DecisionEngineTests
Mocker.GetMock<RetentionSpecification>()
.Setup(c => c.IsSatisfiedBy(It.IsAny<EpisodeParseResult>()))
.Returns(true);
Mocker.GetMock<AllowedReleaseGroupSpecification>()
.Setup(c => c.IsSatisfiedBy(It.IsAny<EpisodeParseResult>()))
.Returns(true);
}
private void WithProfileNotAllowed()