Fixed the broken tests

This commit is contained in:
Mark McDowall
2013-02-26 19:32:22 -08:00
parent c6836e0cb1
commit 23c1c147f1
3 changed files with 18 additions and 18 deletions

View File

@@ -21,7 +21,7 @@ namespace NzbDrone.Core.Test.DecisionEngineTests
private void WithWebdlCutoff()
{
var profile = new QualityProfile { Cutoff = Quality.WEBDL720p };
Mocker.GetMock<QualityProfileService>().Setup(s => s.Get(It.IsAny<int>())).Returns(profile);
Mocker.GetMock<IQualityProfileService>().Setup(s => s.Get(It.IsAny<int>())).Returns(profile);
}
private Series _series;