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