Print a bunch of asterisks before the failure summary, to separate it

from the last failure report.
This commit is contained in:
Guido van Rossum 2001-03-18 16:58:44 +00:00
parent 1bb515b0e5
commit af00a46599
1 changed files with 1 additions and 0 deletions

View File

@ -885,6 +885,7 @@ see its docs for details.
for thing, count in passed:
print " %3d tests in %s" % (count, thing)
if failed:
print "*" * 65
print len(failed), "items had failures:"
failed.sort()
for thing, (f, t) in failed: