From 3e4ff94f5842a9383c3a3710b885f1cd3cbf2c07 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Fri, 8 Jul 2022 17:50:58 +0200 Subject: Fix interrupting when exiting containers --- tests/html_flow.rs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'tests/html_flow.rs') diff --git a/tests/html_flow.rs b/tests/html_flow.rs index 757f2f3..6dfceb5 100644 --- a/tests/html_flow.rs +++ b/tests/html_flow.rs @@ -1018,10 +1018,9 @@ fn html_flow_7_complete() { "should not support lazyness (1)" ); - // To do: blockquote (lazy). - // assert_eq!( - // micromark_with_options("> a\n", DANGER), - // "
\n

a

\n
\n
", - // "should not support lazyness (2)" - // ); + assert_eq!( + micromark_with_options("> a\n", DANGER), + "
\n

a

\n
\n
", + "should not support lazyness (2)" + ); } -- cgit