diff options
Diffstat (limited to 'tests/misc_bom.rs')
-rw-r--r-- | tests/misc_bom.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/misc_bom.rs b/tests/misc_bom.rs index e26b407..47ce902 100644 --- a/tests/misc_bom.rs +++ b/tests/misc_bom.rs @@ -3,7 +3,7 @@ use micromark::micromark; use pretty_assertions::assert_eq; #[test] -fn bom() -> Result<(), String> { +fn bom() { assert_eq!(micromark("\u{FEFF}"), "", "should ignore just a bom"); assert_eq!( @@ -11,6 +11,4 @@ fn bom() -> Result<(), String> { "<h1>hea\u{FEFF}ding</h1>", "should ignore a bom" ); - - Ok(()) } |