aboutsummaryrefslogtreecommitdiffstats
path: root/tests/math_flow.rs
diff options
context:
space:
mode:
authorLibravatar Titus Wormer <tituswormer@gmail.com>2022-10-11 15:45:50 +0200
committerLibravatar Titus Wormer <tituswormer@gmail.com>2022-10-11 15:45:50 +0200
commit73d8609565b808ac73df5ac34e6d4f7f23c25ad6 (patch)
tree8b13c61bcd55380b36338473a74e172b63fb16d7 /tests/math_flow.rs
parent070b3efeeebf34fbc435ffc7fea2bad95689664a (diff)
downloadmarkdown-rs-73d8609565b808ac73df5ac34e6d4f7f23c25ad6.tar.gz
markdown-rs-73d8609565b808ac73df5ac34e6d4f7f23c25ad6.tar.bz2
markdown-rs-73d8609565b808ac73df5ac34e6d4f7f23c25ad6.zip
Refactor to use a bunch of `into`
Diffstat (limited to '')
-rw-r--r--tests/math_flow.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/math_flow.rs b/tests/math_flow.rs
index 4665eef..1cf0f65 100644
--- a/tests/math_flow.rs
+++ b/tests/math_flow.rs
@@ -260,8 +260,8 @@ fn math_flow() -> Result<(), String> {
micromark_to_mdast("$$extra\nabc\ndef\n$$", &math.parse)?,
Node::Root(Root {
children: vec![Node::Math(Math {
- meta: Some("extra".to_string()),
- value: "abc\ndef".to_string(),
+ meta: Some("extra".into()),
+ value: "abc\ndef".into(),
position: Some(Position::new(1, 1, 0, 4, 3, 18))
})],
position: Some(Position::new(1, 1, 0, 4, 3, 18))