1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-24 22:35:49 -04:00

Fixed: Quality Parser and Augmenter Picks Wrong Quality

This commit is contained in:
Qstick
2019-10-30 23:46:40 -04:00
parent 5c3fda48f7
commit bbadf3c7e6
30 changed files with 1118 additions and 640 deletions
@@ -65,7 +65,7 @@ namespace NzbDrone.Core.Test.ParserTests
public void should_parse_ultrahd_from_title(string title, int version)
{
var parsed = QualityParser.ParseQuality(title);
parsed.Resolution.Should().Be(Resolution.R2160P);
parsed.Quality.Resolution.Should().Be((int)Resolution.R2160p);
}
}
}