From 53173e52b151537ad8510da5e7802f342d24a372 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Fri, 25 Nov 2022 12:36:15 +0100 Subject: Remove unneeded tests --- tests/mdx_expression_text.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/mdx_expression_text.rs') diff --git a/tests/mdx_expression_text.rs b/tests/mdx_expression_text.rs index 0fccb0f..0d25105 100644 --- a/tests/mdx_expression_text.rs +++ b/tests/mdx_expression_text.rs @@ -138,7 +138,7 @@ fn mdx_expression_text_gnostic_core() -> Result<(), String> { to_html_with_options("> a {\n> b\n> c} d", &swc) .err() .unwrap(), - "3:3: Could not parse expression with swc: Unexpected content after expression", + "3:7: Could not parse expression with swc: Unexpected content after expression", "should crash on incorrect expressions in containers (2)" ); @@ -263,7 +263,7 @@ fn mdx_expression_text_gnostic() -> Result<(), String> { assert_eq!( to_html_with_options("a {b { c } d", &swc).err().unwrap(), - "1:6: Could not parse expression with swc: Unexpected content after expression", + "1:13: Could not parse expression with swc: Unexpected content after expression", "should crash if no closing brace is found (2)" ); -- cgit