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