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/mdx_esm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/mdx_esm.rs') diff --git a/tests/mdx_esm.rs b/tests/mdx_esm.rs index 31f493b..f6c2b4d 100644 --- a/tests/mdx_esm.rs +++ b/tests/mdx_esm.rs @@ -249,7 +249,7 @@ fn mdx_esm() -> Result<(), String> { micromark_to_mdast("import a from 'b'\nexport {a}", &swc.parse)?, Node::Root(Root { children: vec![Node::MdxjsEsm(MdxjsEsm { - value: "import a from 'b'\nexport {a}".to_string(), + value: "import a from 'b'\nexport {a}".into(), position: Some(Position::new(1, 1, 0, 2, 11, 28)), stops: vec![(0, 0), (17, 17), (18, 18)] })], -- cgit