Fixed: No not trim trailing "A" from series title when looking for a matching series

This commit is contained in:
Mark McDowall
2015-01-11 10:23:47 -08:00
parent 8aa523c6df
commit fc0fa2c22f
3 changed files with 7 additions and 2 deletions

View File

@@ -113,5 +113,11 @@ namespace NzbDrone.Core.Test.ParserTests
dirty.CleanSeriesTitle().Should().Be(word + "wordword");
}
}
[Test]
public void should_not_clean_trailing_a()
{
"Tokyo Ghoul A".CleanSeriesTitle().Should().Be("tokyoghoula");
}
}
}