Skip to content

Commit

Permalink
Fix newline conflict errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
BDisp committed Nov 18, 2023
1 parent 66bc6f5 commit 4acf726
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UnitTests/TestHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ public static void AssertEqual (ITestOutputHelper output, string expectedLook, s
output?.WriteLine ("But Was:" + Environment.NewLine + actualLook);
}

Assert.Equal (expectedLook, actualLook);
Assert.Equal (expectedLook.Replace (Environment.NewLine, "\n"), actualLook.Replace (Environment.NewLine, "\n"));
}
#pragma warning restore xUnit1013 // Public method should be marked as test

Expand Down

0 comments on commit 4acf726

Please sign in to comment.