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

fix(parser): not correctly recognizing YIFY RlsGrp

This commit is contained in:
nuxen
2023-07-25 18:06:57 +02:00
committed by Qstick
parent 7f3e7b360b
commit 111c081545
2 changed files with 4 additions and 2 deletions
@@ -110,6 +110,8 @@ namespace NzbDrone.Core.Test.ParserTests
[TestCase("Movie.Title.2005.2160p.UHD.BluRay.TrueHD 7.1.Atmos.x265 - HQMUX", "HQMUX")]
[TestCase("Movie.Name.2022.1080p.BluRay.x264-VARYG (Blue Lock, Multi-Subs)", "VARYG")]
[TestCase("Movie Title (2023) (1080p BluRay x265 SDR AAC 2.0 English Vyndros)", "Vyndros")]
[TestCase("Movie Title (2010) 1080p BrRip x264 - YIFY", "YIFY")]
[TestCase("Movie Title (2018) [BluRay] [1080p] [YTS] [YIFY]", "YIFY")]
public void should_parse_exception_release_group(string title, string expected)
{
Parser.Parser.ParseReleaseGroup(title).Should().Be(expected);