Replace "\r\n" by "\n" in unit tests
This commit is contained in:
@@ -250,7 +250,7 @@ Parent: # comment without value
|
|||||||
# Indented comment node
|
# Indented comment node
|
||||||
First: value containing a \# character
|
First: value containing a \# character
|
||||||
Second: value # node with inline comment
|
Second: value # node with inline comment
|
||||||
";
|
".Replace("\r\n", "\n");
|
||||||
|
|
||||||
var result = MiniYaml.FromString(yaml, discardCommentsAndWhitespace: false).WriteToString();
|
var result = MiniYaml.FromString(yaml, discardCommentsAndWhitespace: false).WriteToString();
|
||||||
Assert.AreEqual(yaml, result);
|
Assert.AreEqual(yaml, result);
|
||||||
@@ -269,7 +269,7 @@ Parent: # comment without value
|
|||||||
|
|
||||||
var strippedYaml = @"Parent:
|
var strippedYaml = @"Parent:
|
||||||
First: value containing a \# character
|
First: value containing a \# character
|
||||||
Second: value";
|
Second: value".Replace("\r\n", "\n");
|
||||||
|
|
||||||
var result = MiniYaml.FromString(yaml).WriteToString();
|
var result = MiniYaml.FromString(yaml).WriteToString();
|
||||||
Assert.AreEqual(strippedYaml, result);
|
Assert.AreEqual(strippedYaml, result);
|
||||||
|
|||||||
Reference in New Issue
Block a user