Fixed failing tests on Mono

Test case unicode characters in escaped format
This commit is contained in:
Björn Dahlgren
2015-11-10 23:24:41 +01:00
parent 04da2d845a
commit 994e2a6c57
5 changed files with 14 additions and 8 deletions
@@ -47,7 +47,7 @@ namespace NzbDrone.Core.Test.ParserTests
[Test]
public void should_remove_accents_from_title()
{
const string title = "Carnivŕle";
const string title = "Carniv\u00E0le";
title.CleanSeriesTitle().Should().Be("carnivale");
}