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/html_text.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'tests/html_text.rs') diff --git a/tests/html_text.rs b/tests/html_text.rs index 5537d3d..43d2cf2 100644 --- a/tests/html_text.rs +++ b/tests/html_text.rs @@ -13,9 +13,9 @@ fn html_text() -> Result<(), String> { compile: CompileOptions { allow_dangerous_html: true, allow_dangerous_protocol: true, - ..CompileOptions::default() + ..Default::default() }, - ..Options::default() + ..Default::default() }; assert_eq!( @@ -434,11 +434,11 @@ to_html_with_options(" a", &danger)?, parse: ParseOptions { constructs: Constructs { html_text: false, - ..Constructs::default() + ..Default::default() }, - ..ParseOptions::default() + ..Default::default() }, - ..Options::default() + ..Default::default() } )?, "

a <x>

", @@ -446,7 +446,7 @@ to_html_with_options(" a", &danger)?, ); assert_eq!( - to_mdast("alpha bravo charlie.", &ParseOptions::default())?, + to_mdast("alpha bravo charlie.", &Default::default())?, Node::Root(Root { children: vec![Node::Paragraph(Paragraph { children: vec![ -- cgit