1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-23 22:25:14 -04:00

Fixed: Parse 720p Remux as 720p BluRay

Closes #8284

Co-Authored-By: bakerboy448 <55419169+bakerboy448@users.noreply.github.com>
This commit is contained in:
Qstick
2023-04-29 16:47:15 -05:00
parent ff185c6111
commit 55770d3f17
2 changed files with 6 additions and 3 deletions
@@ -252,6 +252,7 @@ namespace NzbDrone.Core.Test.ParserTests
[TestCase("Movie.Name.2019.720p.MBLURAY.x264-MBLURAYFANS.mkv", false)]
[TestCase("Movie.Name2017.720p.MBluRay.x264-TREBLE.mkv", false)]
[TestCase("Movie.Name.2.Parte.2.ITA-ENG.720p.BDMux.DD5.1.x264-DarkSideMux", false)]
[TestCase("Movie.Hunter.2018.720p.Blu-ray.Remux.AVC.FLAC.2.0-SiCFoI", false)]
public void should_parse_bluray720p_quality(string title, bool proper)
{
ParseAndVerifyQuality(title, Source.BLURAY, proper, Resolution.R720p);