Remove test dependency on source file's line endings

This test uses '@' strings so if source files are checked out with different line endings, it will fail
This commit is contained in:
MihaZupan
2021-03-07 19:53:57 +01:00
parent fef4719e41
commit cbd00a45af

View File

@@ -48,6 +48,10 @@ resulting output file.
>look, ma:
> my space is not normalized!
";
expected = expected.Replace("\r\n", "\n").Replace("\r", "\n");
outputMarkdown = outputMarkdown.Replace("\r\n", "\n").Replace("\r", "\n");
Assert.AreEqual(expected, outputMarkdown);
}
}