diff options
Diffstat (limited to '')
| -rw-r--r-- | tests/html_flow.rs | 11 | 
1 files changed, 5 insertions, 6 deletions
| 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<a>", DANGER), -    //     "<blockquote>\n<p>a</p>\n</blockquote>\n<a>", -    //     "should not support lazyness (2)" -    // ); +    assert_eq!( +        micromark_with_options("> a\n<a>", DANGER), +        "<blockquote>\n<p>a</p>\n</blockquote>\n<a>", +        "should not support lazyness (2)" +    );  } | 
