aboutsummaryrefslogtreecommitdiffstats
path: root/tests/heading_atx.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/heading_atx.rs')
-rw-r--r--tests/heading_atx.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/heading_atx.rs b/tests/heading_atx.rs
index 089c2c7..3edcb55 100644
--- a/tests/heading_atx.rs
+++ b/tests/heading_atx.rs
@@ -214,11 +214,11 @@ fn heading_atx() -> Result<(), String> {
parse: ParseOptions {
constructs: Constructs {
heading_atx: false,
- ..Constructs::default()
+ ..Default::default()
},
- ..ParseOptions::default()
+ ..Default::default()
},
- ..Options::default()
+ ..Default::default()
}
)?,
"<p># a</p>",
@@ -226,7 +226,7 @@ fn heading_atx() -> Result<(), String> {
);
assert_eq!(
- to_mdast("## alpha #", &ParseOptions::default())?,
+ to_mdast("## alpha #", &Default::default())?,
Node::Root(Root {
children: vec![Node::Heading(Heading {
depth: 2,