Skip to content

Commit

Permalink
fixes test, uses config in test
Browse files Browse the repository at this point in the history
  • Loading branch information
wghilliard committed Jan 19, 2024
1 parent a8919d6 commit 73d793b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
the

fox

jumps

over
5 changes: 4 additions & 1 deletion src/ReverseMarkdown.Test/ConverterTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1346,7 +1346,10 @@ public Task When_Spaces_In_Inline_Tags_Should_Be_Retained()
public Task When_SuppressNewlineFlag_PrefixDiv_Should_Be_Empty()
{
var html = $"<div>the</div><div>fox</div><div>jumps</div><div>over</div>";
return CheckConversion(html);
return CheckConversion(html, new Config
{
SuppressNewlines = true
});
}
}
}

0 comments on commit 73d793b

Please sign in to comment.