summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 1b00c90..cefde04 100755
--- a/test/spec_tests.py
+++ b/test/spec_tests.py
@@ -60,8 +60,8 @@ 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)