Commit 4812e618 authored by Andrii Shyshkalov's avatar Andrii Shyshkalov Committed by Commit Bot

git cl creds-check: add empty line to clearly indicate report.

R=sergiyb@chromium.org
BUG=689543

Change-Id: Ifb0bc9a03da09cb81ba94c310ae59cfee69b7de1
Reviewed-on: https://chromium-review.googlesource.com/461137Reviewed-by: 's avatarSergiy Byelozyorov <sergiyb@chromium.org>
Commit-Queue: Andrii Shyshkalov <tandrii@chromium.org>
parent aa31b97b
......@@ -3722,7 +3722,7 @@ class _GitCookiesChecker(object):
problems = [False]
def add_problem():
if not problems[0]:
print('.gitcookies problem report:\n')
print('\n\n.gitcookies problem report:\n')
problems[0] = True
if self.has_generic_host():
......
......@@ -513,7 +513,7 @@ class GitCookiesCheckerTest(TestCase):
expected = f.read()
def by_line(text):
return [l.rstrip() for l in text.rstrip().splitlines()]
self.assertEqual(by_line(sys.stdout.getvalue()), by_line(expected))
self.assertEqual(by_line(sys.stdout.getvalue().strip()), by_line(expected))
class TestGitCl(TestCase):
def setUp(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment