aboutsummaryrefslogtreecommitdiffstats
path: root/tests/misc_zero.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/misc_zero.rs')
-rw-r--r--tests/misc_zero.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/misc_zero.rs b/tests/misc_zero.rs
index 0b54d50..f8d0c56 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() {
+fn zero() -> Result<(), String> {
assert_eq!(micromark(""), "", "should support no markdown");
assert_eq!(
@@ -25,4 +25,6 @@ fn zero() {
"<p>\\0</p>",
"should not support NUL in a character escape"
);
+
+ Ok(())
}