diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-10-11 15:45:50 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-10-11 15:45:50 +0200 |
commit | 73d8609565b808ac73df5ac34e6d4f7f23c25ad6 (patch) | |
tree | 8b13c61bcd55380b36338473a74e172b63fb16d7 /tests/definition.rs | |
parent | 070b3efeeebf34fbc435ffc7fea2bad95689664a (diff) | |
download | markdown-rs-73d8609565b808ac73df5ac34e6d4f7f23c25ad6.tar.gz markdown-rs-73d8609565b808ac73df5ac34e6d4f7f23c25ad6.tar.bz2 markdown-rs-73d8609565b808ac73df5ac34e6d4f7f23c25ad6.zip |
Refactor to use a bunch of `into`
Diffstat (limited to 'tests/definition.rs')
-rw-r--r-- | tests/definition.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/definition.rs b/tests/definition.rs index 8357a67..376035a 100644 --- a/tests/definition.rs +++ b/tests/definition.rs @@ -506,10 +506,10 @@ fn definition() -> Result<(), String> { micromark_to_mdast("[a]: <b> 'c'", &ParseOptions::default())?, Node::Root(Root { children: vec![Node::Definition(Definition { - url: "b".to_string(), - identifier: "a".to_string(), - label: Some("a".to_string()), - title: Some("c".to_string()), + url: "b".into(), + identifier: "a".into(), + label: Some("a".into()), + title: Some("c".into()), position: Some(Position::new(1, 1, 0, 1, 13, 12)) })], position: Some(Position::new(1, 1, 0, 1, 13, 12)) |