##// END OF EJS Templates
run-tests: print a new line before writing the diff
Idan Kamara -
r14062:64338128 default
parent child Browse files
Show More
@@ -303,6 +303,7 b' def parsehghaveoutput(lines):'
303 return missing, failed
303 return missing, failed
304
304
305 def showdiff(expected, output, ref, err):
305 def showdiff(expected, output, ref, err):
306 print
306 for line in difflib.unified_diff(expected, output, ref, err):
307 for line in difflib.unified_diff(expected, output, ref, err):
307 sys.stdout.write(line)
308 sys.stdout.write(line)
308
309
General Comments 0
You need to be logged in to leave comments. Login now