From 73d8609565b808ac73df5ac34e6d4f7f23c25ad6 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Tue, 11 Oct 2022 15:45:50 +0200 Subject: Refactor to use a bunch of `into` --- tests/frontmatter.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/frontmatter.rs') diff --git a/tests/frontmatter.rs b/tests/frontmatter.rs index 335084e..be17a7a 100644 --- a/tests/frontmatter.rs +++ b/tests/frontmatter.rs @@ -78,7 +78,7 @@ fn frontmatter() -> Result<(), String> { micromark_to_mdast("---\na: b\n---", &frontmatter.parse)?, Node::Root(Root { children: vec![Node::Yaml(Yaml { - value: "a: b".to_string(), + value: "a: b".into(), position: Some(Position::new(1, 1, 0, 3, 4, 12)) })], position: Some(Position::new(1, 1, 0, 3, 4, 12)) @@ -90,7 +90,7 @@ fn frontmatter() -> Result<(), String> { micromark_to_mdast("+++\ntitle = \"Jupyter\"\n+++", &frontmatter.parse)?, Node::Root(Root { children: vec![Node::Toml(Toml { - value: "title = \"Jupyter\"".to_string(), + value: "title = \"Jupyter\"".into(), position: Some(Position::new(1, 1, 0, 3, 4, 25)) })], position: Some(Position::new(1, 1, 0, 3, 4, 25)) -- cgit