cmark

My personal build of CMark ✏️

Commit
9e5209054ce3ba4cf7edc616e97d88de01983dd7
Parent
54c990d17385156958556d86feca0c6e24da94e7
Author
John MacFarlane <jgm@berkeley.edu>
Date

Revert "spec_tests.py: ignore line endings on diff."

This reverts commit 54c990d17385156958556d86feca0c6e24da94e7.

Diffstat

1 file changed, 3 insertions, 3 deletions

Status File Name N° Changes Insertions Deletions
Modified test/spec_tests.py 6 3 3
diff --git a/test/spec_tests.py b/test/spec_tests.py
@@ -60,11 +60,11 @@ def do_test(converter, test, normalize, result_counts):
                 out("Expected: " + repr(expected_html) + '\n')
                 out("Got:      " + repr(actual_html) + '\n')
             else:
-                expected_html_lines = expected_html.splitlines(False)
-                actual_html_lines = actual_html.splitlines(False)
+                expected_html_lines = expected_html.splitlines(True)
+                actual_html_lines = actual_html.splitlines(True)
                 for diffline in unified_diff(expected_html_lines, actual_html_lines,
                                 "expected HTML", "actual HTML"):
-                    out(diffline + '\n')
+                    out(diffline)
             out('\n')
             result_counts['fail'] += 1
     else: