diff options
Diffstat (limited to 'tests/math_text.rs')
-rw-r--r-- | tests/math_text.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/math_text.rs b/tests/math_text.rs index 6282181..b4d64f8 100644 --- a/tests/math_text.rs +++ b/tests/math_text.rs @@ -214,15 +214,15 @@ fn math_text() -> 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::InlineMath(InlineMath { - value: "alpha".to_string(), + value: "alpha".into(), 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)) }) ], |