From 73d8609565b808ac73df5ac34e6d4f7f23c25ad6 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Tue, 11 Oct 2022 15:45:50 +0200 Subject: Refactor to use a bunch of `into` --- tests/html_flow.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/html_flow.rs') diff --git a/tests/html_flow.rs b/tests/html_flow.rs index ca93510..adeebf6 100644 --- a/tests/html_flow.rs +++ b/tests/html_flow.rs @@ -52,7 +52,7 @@ fn html_flow() -> Result<(), String> { micromark_to_mdast("
\nstuff\n
", &ParseOptions::default())?, Node::Root(Root { children: vec![Node::Html(Html { - value: "
\nstuff\n
".to_string(), + value: "
\nstuff\n
".into(), position: Some(Position::new(1, 1, 0, 3, 7, 18)) })], position: Some(Position::new(1, 1, 0, 3, 7, 18)) -- cgit