summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-12-22 23:08:08 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2014-12-22 23:08:08 -0700
commita5ce7bb8d0f66a342a6887c851d5afa7c7c2c7ab (patch)
treeb37c5e7d83694ade81951ce9326a9ed6340f65cf /test
parent9d4174f7f047aad9e4ab7768ce55e84446df7569 (diff)
Slight improvement to #250.
Indicate which is expected and which is actual output.
Diffstat (limited to 'test')
-rwxr-xr-xtest/spec_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/spec_tests.py b/test/spec_tests.py
index 99ac0dd..afa79db 100755
--- a/test/spec_tests.py
+++ b/test/spec_tests.py
@@ -53,8 +53,8 @@ def do_test(test, normalize):
sys.stdout.write(test['markdown'])
if unicode_error:
print "Unicode error: " + str(unicode_error)
- print repr(expected_html)
- print repr(actual_html)
+ print "Expected: " + repr(expected_html)
+ print "Got: " + repr(actual_html)
else:
expected_html_lines = expected_html.splitlines(True)
actual_html_lines = actual_html.splitlines(True)