summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-06-11 17:16:30 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2015-06-16 17:46:53 -0700
commitef77d908553bfdd37b83ae4832d7e6ff36874f24 (patch)
tree28df7b637e65576ef85820c7528e99fe3bb1c73a /test
parent50d3b871ad9f63907c5b19bb478aae0b6c1247a4 (diff)
spec_tests.py: allow → for tab in HTML examples.
Diffstat (limited to 'test')
-rwxr-xr-xtest/spec_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/spec_tests.py b/test/spec_tests.py
index b1b0373..2ca4b60 100755
--- a/test/spec_tests.py
+++ b/test/spec_tests.py
@@ -96,7 +96,7 @@ def get_tests(specfile):
end_line = line_number
tests.append({
"markdown":''.join(markdown_lines).replace('→',"\t"),
- "html":''.join(html_lines),
+ "html":''.join(html_lines).replace('→',"\t"),
"example": example_number,
"start_line": start_line,
"end_line": end_line,