aboutsummaryrefslogtreecommitdiffstats
path: root/tests/misc_dangerous_html.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/misc_dangerous_html.rs')
-rw-r--r--tests/misc_dangerous_html.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/misc_dangerous_html.rs b/tests/misc_dangerous_html.rs
index 6bc73d8..8afa481 100644
--- a/tests/misc_dangerous_html.rs
+++ b/tests/misc_dangerous_html.rs
@@ -3,7 +3,7 @@ use micromark::{micromark, micromark_with_options, Options};
use pretty_assertions::assert_eq;
#[test]
-fn dangerous_html() {
+fn dangerous_html() -> Result<(), String> {
let danger = &Options {
allow_dangerous_html: true,
allow_dangerous_protocol: true,
@@ -23,8 +23,10 @@ fn dangerous_html() {
);
assert_eq!(
- micromark_with_options("<x>", danger),
+ micromark_with_options("<x>", danger)?,
"<x>",
"should be unsafe w/ `allowDangerousHtml`"
);
+
+ Ok(())
}