Skip to content

Commit 7d7343c

Browse files
committed
windows/linux line endings test failure
1 parent d9c269e commit 7d7343c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Cubist.Helium.Tests/HeTests.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,10 @@ public void ListIgnoresAttributesWithChildTag()
7575
{
7676
var list = List(("id", "test"), P("test"));
7777
Assert.Equal("<p>test</p>", list.ToString());
78-
Assert.Equal("<p>test</p>\r\n", list.PrettyPrint());
78+
Assert.Equal("""
79+
<p>test</p>
80+
81+
""", list.PrettyPrint());
7982
}
8083

8184
[Fact]

0 commit comments

Comments
 (0)