diff --git a/src/NzbDrone.Core.Test/ParserTests/ParserFixture.cs b/src/NzbDrone.Core.Test/ParserTests/ParserFixture.cs index 8543ca24e..6ee517b02 100644 --- a/src/NzbDrone.Core.Test/ParserTests/ParserFixture.cs +++ b/src/NzbDrone.Core.Test/ParserTests/ParserFixture.cs @@ -220,9 +220,8 @@ namespace NzbDrone.Core.Test.ParserTests 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")]