Skip to content

Commit 65f6b91

Browse files
committed
Fixing failing test
1 parent 0ceaa42 commit 65f6b91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/UnitTestDebugLogging/MemoryStreamTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public void TestStreamFile()
2727
memoryStream.Read(fsContent, 0, fsContent.Length);
2828
var fsText = Encoding.UTF8.GetString(fsContent, 0, fsContent.Length);
2929
Assert.StartsWith("An informative message", fsText);
30-
Assert.EndsWith("With exception context System.Exception: Something is not supported", fsText);
30+
Assert.EndsWith("With exception context System.Exception: Something is not supported\r\n", fsText);
3131
}
3232

3333
[Cleanup]

0 commit comments

Comments
 (0)