Added WEBDL 1080p

New: WEBDL 720p and 1080p are now separated
This commit is contained in:
Mark McDowall
2012-10-14 21:30:07 -07:00
parent b40c6ba7b8
commit 09665c2920
17 changed files with 92 additions and 55 deletions
@@ -19,7 +19,7 @@ namespace NzbDrone.Core.Test.ProviderTests.DecisionEngineTests
{
private void WithWebdlCutoff()
{
var profile = new QualityProfile { Cutoff = QualityTypes.WEBDL };
var profile = new QualityProfile { Cutoff = QualityTypes.WEBDL720p };
Mocker.GetMock<QualityProvider>().Setup(s => s.Get(It.IsAny<int>())).Returns(profile);
}
@@ -77,7 +77,7 @@ namespace NzbDrone.Core.Test.ProviderTests.DecisionEngineTests
{
WithWebdlCutoff();
_episodeFile.Quality = QualityTypes.WEBDL;
_episodeFile.Quality = QualityTypes.WEBDL720p;
//Act
bool result = Mocker.Resolve<UpgradePossibleSpecification>().IsSatisfiedBy(_episode);