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

Fixed: Don't parse packs missing season number

This commit is contained in:
Mark McDowall
2019-10-07 09:35:51 -07:00
parent 7af891216d
commit ef1e8d7ef3
2 changed files with 8 additions and 2 deletions
@@ -90,5 +90,11 @@ namespace NzbDrone.Core.Test.ParserTests
{
Parser.Parser.ParseTitle(fileName).Should().BeNull();
}
[TestCase("Big Forest (2018) Complete 360p HDTV AAC H.264-NEXT")]
public void should_not_parse_invalid_release_name(string fileName)
{
Parser.Parser.ParseTitle(fileName).Should().BeNull();
}
}
}