Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8f00319

Browse files
committed
regrtest: add newlines in output for readability
1 parent 72f25c8 commit 8f00319

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

Lib/test/libregrtest/main.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,15 +296,18 @@ def display_result(self):
296296
print("- %s: %s" % (test, format_duration(time)))
297297

298298
if self.bad:
299+
print()
299300
print(count(len(self.bad), "test"), "failed:")
300301
printlist(self.bad)
301302

302303
if self.environment_changed:
304+
print()
303305
print("{} altered the execution environment:".format(
304306
count(len(self.environment_changed), "test")))
305307
printlist(self.environment_changed)
306308

307309
if self.skipped and not self.ns.quiet:
310+
print()
308311
print(count(len(self.skipped), "test"), "skipped:")
309312
printlist(self.skipped)
310313

0 commit comments

Comments
 (0)