aboutsummaryrefslogtreecommitdiffstats
path: root/tests/misc_soft_break.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/misc_soft_break.rs')
-rw-r--r--tests/misc_soft_break.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/misc_soft_break.rs b/tests/misc_soft_break.rs
index 43e2f3d..746b41d 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() {
+fn soft_break() -> Result<(), String> {
assert_eq!(
micromark("foo\nbaz"),
"<p>foo\nbaz</p>",
@@ -15,4 +15,6 @@ fn soft_break() {
"<p>foo\nbaz</p>",
"should trim spaces around line endings"
);
+
+ Ok(())
}