diff options
Diffstat (limited to '')
| -rw-r--r-- | tests/hard_break_escape.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/tests/hard_break_escape.rs b/tests/hard_break_escape.rs index 2e88c95..9f17f10 100644 --- a/tests/hard_break_escape.rs +++ b/tests/hard_break_escape.rs @@ -69,14 +69,14 @@ fn hard_break_escape() -> 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, 3))                      }),                      Node::Text(Text { -                        value: "b.".to_string(), +                        value: "b.".into(),                          position: Some(Position::new(2, 1, 3, 2, 3, 5))                      }),                  ], | 
