aboutsummaryrefslogtreecommitdiffstats
path: root/tests/heading_setext.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/heading_setext.rs')
-rw-r--r--tests/heading_setext.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/heading_setext.rs b/tests/heading_setext.rs
index ec8b056..8cf0863 100644
--- a/tests/heading_setext.rs
+++ b/tests/heading_setext.rs
@@ -281,11 +281,11 @@ fn heading_setext() -> Result<(), String> {
parse: ParseOptions {
constructs: Constructs {
heading_setext: false,
- ..Constructs::default()
+ ..Default::default()
},
- ..ParseOptions::default()
+ ..Default::default()
},
- ..Options::default()
+ ..Default::default()
}
)?,
"<p>a\n-</p>",
@@ -293,7 +293,7 @@ fn heading_setext() -> Result<(), String> {
);
assert_eq!(
- to_mdast("alpha\nbravo\n==", &ParseOptions::default())?,
+ to_mdast("alpha\nbravo\n==", &Default::default())?,
Node::Root(Root {
children: vec![Node::Heading(Heading {
depth: 1,