diff options
Diffstat (limited to '')
| -rw-r--r-- | tests/heading_atx.rs | 11 | 
1 files changed, 5 insertions, 6 deletions
diff --git a/tests/heading_atx.rs b/tests/heading_atx.rs index 7a830fe..defc77f 100644 --- a/tests/heading_atx.rs +++ b/tests/heading_atx.rs @@ -99,12 +99,11 @@ fn heading_atx() {          "should not support four initial spaces"      ); -    // To do: strip whitespace. -    // assert_eq!( -    //     micromark("foo\n    # bar"), -    //     "<p>foo\n# bar</p>", -    //     "should not support four initial spaces when interrupting" -    // ); +    assert_eq!( +        micromark("foo\n    # bar"), +        "<p>foo\n# bar</p>", +        "should not support four initial spaces when interrupting" +    );      assert_eq!(          micromark("## foo ##"),  | 
