This commit is contained in:
Antoine Aubry 2013-04-30 10:12:20 +01:00
Родитель 4d55f12699
Коммит 0d9b5a45bd
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -780,7 +780,7 @@ namespace YamlDotNet.UnitTests.RepresentationModel
string serialized = writer.ToString();
// Ensure serialisation is correct
Assert.Equal("fourthTest: Fourth", serialized);
Assert.Equal("fourthTest: Fourth", serialized.TrimEnd('\r', '\n'));
var deserializer = new YamlSerializer<ConventionTest>();
var output = deserializer.Deserialize(new StringReader(serialized));