diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-10-11 15:45:50 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-10-11 15:45:50 +0200 |
commit | 73d8609565b808ac73df5ac34e6d4f7f23c25ad6 (patch) | |
tree | 8b13c61bcd55380b36338473a74e172b63fb16d7 /tests/link_reference.rs | |
parent | 070b3efeeebf34fbc435ffc7fea2bad95689664a (diff) | |
download | markdown-rs-73d8609565b808ac73df5ac34e6d4f7f23c25ad6.tar.gz markdown-rs-73d8609565b808ac73df5ac34e6d4f7f23c25ad6.tar.bz2 markdown-rs-73d8609565b808ac73df5ac34e6d4f7f23c25ad6.zip |
Refactor to use a bunch of `into`
Diffstat (limited to 'tests/link_reference.rs')
-rw-r--r-- | tests/link_reference.rs | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/tests/link_reference.rs b/tests/link_reference.rs index c21ca0b..5e00dab 100644 --- a/tests/link_reference.rs +++ b/tests/link_reference.rs @@ -436,58 +436,58 @@ fn link_reference() -> Result<(), String> { Node::Root(Root { children: vec![ Node::Definition(Definition { - identifier: "x".to_string(), - label: Some("x".to_string()), - url: "y".to_string(), + identifier: "x".into(), + label: Some("x".into()), + url: "y".into(), title: None, position: Some(Position::new(1, 1, 0, 1, 7, 6)) }), Node::Paragraph(Paragraph { children: vec![ Node::Text(Text { - value: "a ".to_string(), + value: "a ".into(), position: Some(Position::new(3, 1, 8, 3, 3, 10)) }), Node::LinkReference(LinkReference { reference_kind: ReferenceKind::Shortcut, - identifier: "x".to_string(), - label: Some("x".to_string()), + identifier: "x".into(), + label: Some("x".into()), children: vec![Node::Text(Text { - value: "x".to_string(), + value: "x".into(), position: Some(Position::new(3, 4, 11, 3, 5, 12)) }),], position: Some(Position::new(3, 3, 10, 3, 6, 13)) }), Node::Text(Text { - value: " b ".to_string(), + value: " b ".into(), position: Some(Position::new(3, 6, 13, 3, 9, 16)) }), Node::LinkReference(LinkReference { reference_kind: ReferenceKind::Collapsed, - identifier: "x".to_string(), - label: Some("x".to_string()), + identifier: "x".into(), + label: Some("x".into()), children: vec![Node::Text(Text { - value: "x".to_string(), + value: "x".into(), position: Some(Position::new(3, 10, 17, 3, 11, 18)) }),], position: Some(Position::new(3, 9, 16, 3, 14, 21)) }), Node::Text(Text { - value: " c ".to_string(), + value: " c ".into(), position: Some(Position::new(3, 14, 21, 3, 17, 24)) }), Node::LinkReference(LinkReference { reference_kind: ReferenceKind::Full, - identifier: "x".to_string(), - label: Some("x".to_string()), + identifier: "x".into(), + label: Some("x".into()), children: vec![Node::Text(Text { - value: "d".to_string(), + value: "d".into(), position: Some(Position::new(3, 18, 25, 3, 19, 26)) }),], position: Some(Position::new(3, 17, 24, 3, 23, 30)) }), Node::Text(Text { - value: " e.".to_string(), + value: " e.".into(), position: Some(Position::new(3, 23, 30, 3, 26, 33)) }), ], |