changeset 14062:643381286e0c

run-tests: print a new line before writing the diff
author Idan Kamara <idankk86@gmail.com>
date Sat, 30 Apr 2011 15:20:27 +0300
parents 611d2f8a4ba2
children 87ebf72878ed
files tests/run-tests.py
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/tests/run-tests.py	Sat Apr 30 10:56:43 2011 -0500
+++ b/tests/run-tests.py	Sat Apr 30 15:20:27 2011 +0300
@@ -303,6 +303,7 @@
     return missing, failed
 
 def showdiff(expected, output, ref, err):
+    print
     for line in difflib.unified_diff(expected, output, ref, err):
         sys.stdout.write(line)