diff options
Diffstat (limited to 'tests/misc_soft_break.rs')
-rw-r--r-- | tests/misc_soft_break.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/misc_soft_break.rs b/tests/misc_soft_break.rs index 746b41d..43e2f3d 100644 --- a/tests/misc_soft_break.rs +++ b/tests/misc_soft_break.rs @@ -3,7 +3,7 @@ use micromark::micromark; use pretty_assertions::assert_eq; #[test] -fn soft_break() -> Result<(), String> { +fn soft_break() { assert_eq!( micromark("foo\nbaz"), "<p>foo\nbaz</p>", @@ -15,6 +15,4 @@ fn soft_break() -> Result<(), String> { "<p>foo\nbaz</p>", "should trim spaces around line endings" ); - - Ok(()) } |