diff options
Diffstat (limited to 'tests/thematic_break.rs')
-rw-r--r-- | tests/thematic_break.rs | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/tests/thematic_break.rs b/tests/thematic_break.rs index cbc84e0..e71ae22 100644 --- a/tests/thematic_break.rs +++ b/tests/thematic_break.rs @@ -63,12 +63,11 @@ fn thematic_break() { "should not support thematic breaks w/ 4 spaces" ); - // To do: trimming paragraphs. - // assert_eq!( - // micromark("Foo\n ***"), - // "<p>Foo\n***</p>", - // "should not support thematic breaks w/ 4 spaces as paragraph continuation" - // ); + assert_eq!( + micromark("Foo\n ***"), + "<p>Foo\n***</p>", + "should not support thematic breaks w/ 4 spaces as paragraph continuation" + ); assert_eq!( micromark("_____________________________________"), |