From 1d92666865b35341e076efbefddf6e73b5e1542e Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Wed, 7 Sep 2022 15:53:06 +0200 Subject: Add support for recoverable syntax errors --- tests/hard_break_escape.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'tests/hard_break_escape.rs') diff --git a/tests/hard_break_escape.rs b/tests/hard_break_escape.rs index 70fbf64..2510860 100644 --- a/tests/hard_break_escape.rs +++ b/tests/hard_break_escape.rs @@ -3,7 +3,7 @@ use micromark::{micromark, micromark_with_options, Constructs, Options}; use pretty_assertions::assert_eq; #[test] -fn hard_break_escape() { +fn hard_break_escape() -> Result<(), String> { assert_eq!( micromark("foo\\\nbaz"), "

foo
\nbaz

", @@ -50,8 +50,10 @@ fn hard_break_escape() { }, ..Options::default() } - ), + )?, "

a\\\nb

", "should support turning off hard break (escape)" ); + + Ok(()) } -- cgit