summaryrefslogtreecommitdiff
path: root/test/pathological_tests.py
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2016-06-24 21:48:31 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2016-06-24 21:48:31 -0700
commit0d546c29f28f6c185105a06d0fb3669f7647b9f2 (patch)
tree3f2f82657fdb04c1310aac8ff5a28d9f5cf739af /test/pathological_tests.py
parentc50197bab81d7105c9c790548821b61bcb97a62a (diff)
Updated spec and pathological tests for changes in strong/emph parsing.
Diffstat (limited to 'test/pathological_tests.py')
-rw-r--r--test/pathological_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pathological_tests.py b/test/pathological_tests.py
index f3aa5a2..b033308 100644
--- a/test/pathological_tests.py
+++ b/test/pathological_tests.py
@@ -43,7 +43,7 @@ pathological = {
re.compile("(\[ a_){50000}")),
"hard link/emph case":
("**x [a*b**c*](d)",
- re.compile("\\*\\*x <a href=\"d\">a<em>b</em><em>c</em></a>")),
+ re.compile("\\*\\*x <a href=\"d\">a<em>b\\*\\*c</em></a>")),
"nested brackets":
(("[" * 50000) + "a" + ("]" * 50000),
re.compile("\[{50000}a\]{50000}")),