- Commit
- 54c990d17385156958556d86feca0c6e24da94e7
- Parent
- 9411fe7146a12d38e3fff194d9b885dacd9d6af2
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
spec_tests.py: ignore line endings on diff.
My personal build of CMark ✏️
spec_tests.py: ignore line endings on diff.
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(True) - actual_html_lines = actual_html.splitlines(True) + expected_html_lines = expected_html.splitlines(False) + actual_html_lines = actual_html.splitlines(False) for diffline in unified_diff(expected_html_lines, actual_html_lines, "expected HTML", "actual HTML"): - out(diffline) + out(diffline + '\n') out('\n') result_counts['fail'] += 1 else: