diff options
Diffstat (limited to '')
-rw-r--r-- | tests/heading_setext.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/heading_setext.rs b/tests/heading_setext.rs index fa979be..b2889f5 100644 --- a/tests/heading_setext.rs +++ b/tests/heading_setext.rs @@ -3,7 +3,7 @@ use micromark::{micromark, micromark_with_options, Constructs, Options}; use pretty_assertions::assert_eq; #[test] -fn heading_setext() { +fn heading_setext() -> Result<(), String> { assert_eq!( micromark("Foo *bar*\n========="), "<h1>Foo <em>bar</em></h1>", @@ -279,8 +279,10 @@ fn heading_setext() { }, ..Options::default() } - ), + )?, "<p>a\n-</p>", "should support turning off setext underlines" ); + + Ok(()) } |