- Commit
- 0ba527775f8ea5371d7383d9118153fcb7a67bc3
- Parent
- da0d0b693d179d1df02cc967da74fa4a5e58f121
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
Merge pull request #229 from cebe/fixed-python-script
fixed python script
My personal build of CMark ✏️
Merge pull request #229 from cebe/fixed-python-script
fixed python script
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 @@ -44,9 +44,9 @@ def do_test(test, normalize): if passed: return 'pass' else: - print_test_header(headertext, example_number,start_line,end_line) + print_test_header(test['section'], test['example'], test['start_line'], test['end_line']) sys.stdout.write(test['markdown']) - expected_html_lines = '\n'.split(expected_html) + 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"):