diff options
Diffstat (limited to 'tests/misc_zero.rs')
-rw-r--r-- | tests/misc_zero.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/misc_zero.rs b/tests/misc_zero.rs index f8d0c56..0b54d50 100644 --- a/tests/misc_zero.rs +++ b/tests/misc_zero.rs @@ -3,7 +3,7 @@ use micromark::micromark; use pretty_assertions::assert_eq; #[test] -fn zero() -> Result<(), String> { +fn zero() { assert_eq!(micromark(""), "", "should support no markdown"); assert_eq!( @@ -25,6 +25,4 @@ fn zero() -> Result<(), String> { "<p>\\0</p>", "should not support NUL in a character escape" ); - - Ok(()) } |