diff options
Diffstat (limited to '')
-rw-r--r-- | tests/attention.rs | 10 | ||||
-rw-r--r-- | tests/autolink.rs | 14 |
2 files changed, 12 insertions, 12 deletions
diff --git a/tests/attention.rs b/tests/attention.rs index 83e68d9..e627c4d 100644 --- a/tests/attention.rs +++ b/tests/attention.rs @@ -844,29 +844,29 @@ fn attention() -> 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, 3, 2)) }), Node::Emphasis(Emphasis { children: vec![Node::Text(Text { - value: "alpha".to_string(), + value: "alpha".into(), position: Some(Position::new(1, 4, 3, 1, 9, 8)) }),], position: Some(Position::new(1, 3, 2, 1, 10, 9)) }), Node::Text(Text { - value: " b ".to_string(), + value: " b ".into(), position: Some(Position::new(1, 10, 9, 1, 13, 12)) }), Node::Strong(Strong { children: vec![Node::Text(Text { - value: "bravo".to_string(), + value: "bravo".into(), position: Some(Position::new(1, 15, 14, 1, 20, 19)) }),], position: Some(Position::new(1, 13, 12, 1, 22, 21)) }), Node::Text(Text { - value: " c.".to_string(), + value: " c.".into(), position: Some(Position::new(1, 22, 21, 1, 25, 24)) }) ], diff --git a/tests/autolink.rs b/tests/autolink.rs index 7ef3caa..d2b0956 100644 --- a/tests/autolink.rs +++ b/tests/autolink.rs @@ -279,33 +279,33 @@ fn autolink() -> 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, 3, 2)) }), Node::Link(Link { - url: "https://alpha.com".to_string(), + url: "https://alpha.com".into(), title: None, children: vec![Node::Text(Text { - value: "https://alpha.com".to_string(), + value: "https://alpha.com".into(), position: Some(Position::new(1, 4, 3, 1, 21, 20)) }),], position: Some(Position::new(1, 3, 2, 1, 22, 21)) }), Node::Text(Text { - value: " b ".to_string(), + value: " b ".into(), position: Some(Position::new(1, 22, 21, 1, 25, 24)) }), Node::Link(Link { - url: "mailto:bravo@charlie.com".to_string(), + url: "mailto:bravo@charlie.com".into(), title: None, children: vec![Node::Text(Text { - value: "bravo@charlie.com".to_string(), + value: "bravo@charlie.com".into(), position: Some(Position::new(1, 26, 25, 1, 43, 42)) }),], position: Some(Position::new(1, 25, 24, 1, 44, 43)) }), Node::Text(Text { - value: " c.".to_string(), + value: " c.".into(), position: Some(Position::new(1, 44, 43, 1, 47, 46)) }) ], |