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

Fixed: Incorrectly Parsing [PublicHD] as Release Group

This commit is contained in:
bakerboy448
2021-08-01 15:30:33 -05:00
committed by GitHub
parent 155dbd4dd5
commit 3bbec2ff5d
2 changed files with 3 additions and 1 deletions
@@ -37,6 +37,7 @@ namespace NzbDrone.Core.Test.ParserTests
[TestCase("SomeShow.S20E13.1080p.BluRay.DTS-MA.5.1.x264",null)]
[TestCase("SomeShow.S20E13.1080p.BluRay.DTS-ES.5.1.x264",null)]
[TestCase("SomeShow.S20E13.1080p.Blu-Ray.DTS-ES.5.1.x264",null)]
[TestCase("SomeShow.S20E13.1080p.Blu-Ray.DTS-ES.5.1.x264-ROUGH [PublicHD]", "ROUGH")]
//[TestCase("", "")]
public void should_parse_release_group(string title, string expected)
{