aboutsummaryrefslogtreecommitdiffstats
path: root/tests/math_flow.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/math_flow.rs')
-rw-r--r--tests/math_flow.rs15
1 files changed, 9 insertions, 6 deletions
diff --git a/tests/math_flow.rs b/tests/math_flow.rs
index abb1f32..4665eef 100644
--- a/tests/math_flow.rs
+++ b/tests/math_flow.rs
@@ -3,17 +3,20 @@ use micromark::{
mdast::{Math, Node, Root},
micromark, micromark_to_mdast, micromark_with_options,
unist::Position,
- Constructs, Options,
+ Constructs, Options, ParseOptions,
};
use pretty_assertions::assert_eq;
#[test]
fn math_flow() -> Result<(), String> {
let math = Options {
- constructs: Constructs {
- math_text: true,
- math_flow: true,
- ..Constructs::default()
+ parse: ParseOptions {
+ constructs: Constructs {
+ math_text: true,
+ math_flow: true,
+ ..Constructs::default()
+ },
+ ..ParseOptions::default()
},
..Options::default()
};
@@ -254,7 +257,7 @@ fn math_flow() -> Result<(), String> {
);
assert_eq!(
- micromark_to_mdast("$$extra\nabc\ndef\n$$", &math)?,
+ micromark_to_mdast("$$extra\nabc\ndef\n$$", &math.parse)?,
Node::Root(Root {
children: vec![Node::Math(Math {
meta: Some("extra".to_string()),