From 246063fb7cd21a83beae5934f95b2795fb85df51 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Fri, 14 Oct 2022 10:49:28 +0200 Subject: Refactor to use default trait in tests --- tests/thematic_break.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/thematic_break.rs') diff --git a/tests/thematic_break.rs b/tests/thematic_break.rs index 735829d..35fa2e0 100644 --- a/tests/thematic_break.rs +++ b/tests/thematic_break.rs @@ -178,11 +178,11 @@ fn thematic_break() -> Result<(), String> { parse: ParseOptions { constructs: Constructs { thematic_break: false, - ..Constructs::default() + ..Default::default() }, - ..ParseOptions::default() + ..Default::default() }, - ..Options::default() + ..Default::default() } )?, "

***

", @@ -190,7 +190,7 @@ fn thematic_break() -> Result<(), String> { ); assert_eq!( - to_mdast("***", &ParseOptions::default())?, + to_mdast("***", &Default::default())?, Node::Root(Root { children: vec![Node::ThematicBreak(ThematicBreak { position: Some(Position::new(1, 1, 0, 1, 4, 3)) -- cgit