From a5ce7bb8d0f66a342a6887c851d5afa7c7c2c7ab Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 22 Dec 2014 23:08:08 -0700 Subject: Slight improvement to #250. Indicate which is expected and which is actual output. --- test/spec_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/spec_tests.py b/test/spec_tests.py index 99ac0dd..afa79db 100755 --- 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) -- cgit v1.2.3