cmark

My personal build of CMark ✏️

Commit
a5ce7bb8d0f66a342a6887c851d5afa7c7c2c7ab
Parent
9d4174f7f047aad9e4ab7768ce55e84446df7569
Author
John MacFarlane <jgm@berkeley.edu>
Date

Slight improvement to #250.

Indicate which is expected and which is actual output.

Diffstat

1 file changed, 2 insertions, 2 deletions

Status File Name N° Changes Insertions Deletions
Modified test/spec_tests.py 4 2 2
diff --git 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)