diff options
Diffstat (limited to 'tests/misc_soft_break.rs')
-rw-r--r-- | tests/misc_soft_break.rs | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/tests/misc_soft_break.rs b/tests/misc_soft_break.rs index 1704ec2..50dedc1 100644 --- a/tests/misc_soft_break.rs +++ b/tests/misc_soft_break.rs @@ -9,10 +9,9 @@ fn soft_break() { "should support line endings" ); - // To do: trim whitespace. - // assert_eq!( - // micromark("foo \n baz"), - // "<p>foo\nbaz</p>", - // "should trim spaces around line endings" - // ); + assert_eq!( + micromark("foo \n baz"), + "<p>foo\nbaz</p>", + "should trim spaces around line endings" + ); } |