aboutsummaryrefslogtreecommitdiffstats
path: root/tests/character_escape.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/character_escape.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/character_escape.rs b/tests/character_escape.rs
index c81760d..9e2a5c8 100644
--- a/tests/character_escape.rs
+++ b/tests/character_escape.rs
@@ -24,7 +24,7 @@ fn character_escape() {
assert_eq!(
micromark(
- "\\*not emphasized*\n\\<br/> not a tag\n\\[not a link](/foo)\n\\`not code`\n1\\. not a list\n\\* not a list\n\\# not a heading\n\\[foo]: /url \"not a reference\"\n\\&ouml; not a character entity"
+ "\\*not emphasized*\n\\<br/> not a tag\n\\[not a link](/foo)\n\\`not code`\n1\\. not a list\n\\* not a list\n\\# not a heading\n\\[foo]: /url \"not a reference\"\n\\&ouml; not a character entity"
),
"<p>*not emphasized*\n&lt;br/&gt; not a tag\n[not a link](/foo)\n`not code`\n1. not a list\n* not a list\n# not a heading\n[foo]: /url &quot;not a reference&quot;\n&amp;ouml; not a character entity</p>",
"should escape other constructs"