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/hard_break_trailing.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/hard_break_trailing.rs') diff --git a/tests/hard_break_trailing.rs b/tests/hard_break_trailing.rs index 907356a..c724c85 100644 --- a/tests/hard_break_trailing.rs +++ b/tests/hard_break_trailing.rs @@ -135,14 +135,14 @@ fn hard_break_trailing() -> Result<(), String> { children: vec![Node::Paragraph(Paragraph { children: vec![ Node::Text(Text { - value: "a".to_string(), + value: "a".into(), position: Some(Position::new(1, 1, 0, 1, 2, 1)) }), Node::Break(Break { position: Some(Position::new(1, 2, 1, 2, 1, 4)) }), Node::Text(Text { - value: "b.".to_string(), + value: "b.".into(), position: Some(Position::new(2, 1, 4, 2, 3, 6)) }), ], -- cgit