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

Fixed: Parse 'Assembly Cut' as an Edition

Closes #5716
This commit is contained in:
bakerboy448
2021-01-10 13:11:32 -06:00
committed by Qstick
parent 177d77db69
commit a81b6f41af
2 changed files with 2 additions and 1 deletions
@@ -43,6 +43,7 @@ namespace NzbDrone.Core.Test.ParserTests
[TestCase("My Movie GERMAN Extended Cut 2016", "Extended Cut")]
[TestCase("My.Movie.GERMAN.Extended.Cut.2016", "Extended Cut")]
[TestCase("My.Movie.GERMAN.Extended.Cut", "Extended Cut")]
[TestCase("My.Movie.Assembly.Cut.1992.REPACK.1080p.BluRay.DD5.1.x264-Group", "Assembly Cut")]
public void should_parse_edition(string postTitle, string edition)
{
var parsed = Parser.Parser.ParseMovieTitle(postTitle);