1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-07-07 04:19:25 +02:00

Update multi parser test

This commit is contained in:
Qstick 2022-03-26 18:45:23 -05:00
parent ad8629fac9
commit 7ec0fd1cea

View File

@ -220,9 +220,8 @@ public void should_not_parse_multi_language_in_releasegroup(string postTitle)
public void should_parse_multi_language(string postTitle)
{
var parsed = Parser.Parser.ParseMovieTitle(postTitle, true);
parsed.Languages.Count.Should().Be(2);
parsed.Languages.Count.Should().Be(1);
parsed.Languages.Should().Contain(Language.German);
parsed.Languages.Should().Contain(Language.English, "Added by the multi tag in the release name");
}
[TestCase("That Italian Movie 2008 [tt1234567] 720p BluRay X264", "tt1234567")]