Skip to content

Commit

Permalink
ParserDriver: correct line endings normalisation
Browse files Browse the repository at this point in the history
  • Loading branch information
obligaron committed Dec 27, 2024
1 parent a6e408c commit e7ccc53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Reqnroll.Specs/Drivers/Parser/ParserDriver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void ParseFile()
public void AssertParsedFeatureEqualTo(string expected)
{
static string Normalize(string value)
=> value.Replace("\r", "");
=> value.Replace("\r", "").Replace(@"\r", "");

string got = SerializeDocument(ParsedDocument);
got = Normalize(got);
Expand Down

0 comments on commit e7ccc53

Please sign in to comment.