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_text.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tests/html_text.rs') diff --git a/tests/html_text.rs b/tests/html_text.rs index bc36bd7..2bdd79d 100644 --- a/tests/html_text.rs +++ b/tests/html_text.rs @@ -451,23 +451,23 @@ micromark_with_options(" a", &danger)?, children: vec![Node::Paragraph(Paragraph { children: vec![ Node::Text(Text { - value: "alpha ".to_string(), + value: "alpha ".into(), position: Some(Position::new(1, 1, 0, 1, 7, 6)) }), Node::Html(Html { - value: "".to_string(), + value: "".into(), position: Some(Position::new(1, 7, 6, 1, 10, 9)) }), Node::Text(Text { - value: "bravo".to_string(), + value: "bravo".into(), position: Some(Position::new(1, 10, 9, 1, 15, 14)) }), Node::Html(Html { - value: "".to_string(), + value: "".into(), position: Some(Position::new(1, 15, 14, 1, 19, 18)) }), Node::Text(Text { - value: " charlie.".to_string(), + value: " charlie.".into(), position: Some(Position::new(1, 19, 18, 1, 28, 27)) }) ], -- cgit