diff options
Diffstat (limited to 'tests/mdx_expression_text.rs')
-rw-r--r-- | tests/mdx_expression_text.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/mdx_expression_text.rs b/tests/mdx_expression_text.rs index 0aee081..e0f1f3f 100644 --- a/tests/mdx_expression_text.rs +++ b/tests/mdx_expression_text.rs @@ -208,16 +208,16 @@ fn mdx_expression_text_agnostic() -> 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::MdxTextExpression(MdxTextExpression { - value: "alpha".to_string(), + value: "alpha".into(), position: Some(Position::new(1, 3, 2, 1, 10, 9)), stops: vec![(0, 3)] }), Node::Text(Text { - value: " b.".to_string(), + value: " b.".into(), position: Some(Position::new(1, 10, 9, 1, 13, 12)) }) ], |