diff options
Diffstat (limited to 'tests/text.rs')
-rw-r--r-- | tests/text.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/text.rs b/tests/text.rs index 584f463..a2ef1fb 100644 --- a/tests/text.rs +++ b/tests/text.rs @@ -3,7 +3,7 @@ use micromark::micromark; use pretty_assertions::assert_eq; #[test] -fn text() { +fn text() -> Result<(), String> { assert_eq!( micromark("hello $.;'there"), "<p>hello $.;'there</p>", @@ -21,4 +21,6 @@ fn text() { "<p>Multiple spaces</p>", "should preserve internal spaces verbatim" ); + + Ok(()) } |