diff options
Diffstat (limited to 'tests/mdx_esm.rs')
-rw-r--r-- | tests/mdx_esm.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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)] })], |