aboutsummaryrefslogtreecommitdiffstats
path: root/tests/html_text.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/html_text.rs')
-rw-r--r--tests/html_text.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/html_text.rs b/tests/html_text.rs
index 1f85ac4..e70a4da 100644
--- a/tests/html_text.rs
+++ b/tests/html_text.rs
@@ -1,9 +1,10 @@
extern crate micromark;
-use micromark::{micromark, micromark_with_options, CompileOptions};
+use micromark::{micromark, micromark_with_options, Options};
-const DANGER: &CompileOptions = &CompileOptions {
+const DANGER: &Options = &Options {
allow_dangerous_html: true,
allow_dangerous_protocol: false,
+ default_line_ending: None,
};
#[test]