Add terminating newline to yaml strings.

This commit is contained in:
Paul Chote
2019-04-25 21:40:35 +00:00
committed by reaperrr
parent 753a0b1e3e
commit 2a085945df
2 changed files with 4 additions and 2 deletions

View File

@@ -269,7 +269,8 @@ Parent: # comment without value
var strippedYaml = @"Parent:
First: value containing a \# character
Second: value".Replace("\r\n", "\n");
Second: value
".Replace("\r\n", "\n");
var result = MiniYaml.FromString(yaml).WriteToString();
Assert.AreEqual(strippedYaml, result);