From ac9dfc4f25074769a765626233b74eccf760812d Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Wed, 11 Aug 2021 18:16:53 -0500 Subject: [PATCH] add missing quality fixture test case ref #5675 we did not have a test case for the H265 change --- src/NzbDrone.Core.Test/ParserTests/QualityParserFixture.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/NzbDrone.Core.Test/ParserTests/QualityParserFixture.cs b/src/NzbDrone.Core.Test/ParserTests/QualityParserFixture.cs index 1b0ada5e1..c228a199f 100644 --- a/src/NzbDrone.Core.Test/ParserTests/QualityParserFixture.cs +++ b/src/NzbDrone.Core.Test/ParserTests/QualityParserFixture.cs @@ -200,6 +200,7 @@ namespace NzbDrone.Core.Test.ParserTests [TestCase("Movie.Name.2016.03.14.2160p.WEB.h264-spamTV", false)] [TestCase("Movie.Name.2016.03.14.2160p.WEB.PROPER.h264-spamTV", true)] [TestCase("[HorribleSubs] Movie Title! 2018 [Web][MKV][h264][2160p][AAC 2.0][Softsubs (HorribleSubs)]", false)] + [TestCase("Movie Name 2020 WEB-DL 4K H265 10bit HDR DDP5.1 Atmos-PTerWEB", false)] public void should_parse_webdl2160p_quality(string title, bool proper) { ParseAndVerifyQuality(title, Source.WEBDL, proper, Resolution.R2160p);