diff --git a/Octokit.Tests.Integration/Clients/MiscellaneousClientTests.cs b/Octokit.Tests.Integration/Clients/MiscellaneousClientTests.cs index c415060d..f5f46b99 100644 --- a/Octokit.Tests.Integration/Clients/MiscellaneousClientTests.cs +++ b/Octokit.Tests.Integration/Clients/MiscellaneousClientTests.cs @@ -31,9 +31,9 @@ public class MiscellaneousClientTests Credentials = Helper.Credentials }; - var result = await github.Miscellaneous.RenderRawMarkdown("This is a **test**"); + var result = await github.Miscellaneous.RenderRawMarkdown("This is\r\n a **test**"); - Assert.Equal("

This is a test

", result); + Assert.Equal("

This is\n a test

\n", result); } } }