diff options
Diffstat (limited to 'meta/lib/patchtest/tests/test_mbox_author.py')
-rw-r--r-- | meta/lib/patchtest/tests/test_mbox_author.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/patchtest/tests/test_mbox_author.py b/meta/lib/patchtest/tests/test_mbox_author.py index 6c79f164d4..fb8f10e1fd 100644 --- a/meta/lib/patchtest/tests/test_mbox_author.py +++ b/meta/lib/patchtest/tests/test_mbox_author.py | |||
@@ -21,9 +21,9 @@ class Author(base.Base): | |||
21 | for commit in self.commits: | 21 | for commit in self.commits: |
22 | for invalid in self.invalids: | 22 | for invalid in self.invalids: |
23 | if invalid.search(commit.author): | 23 | if invalid.search(commit.author): |
24 | self.fail('Invalid author %s' % commit.author, 'Resend the series with a valid patch\'s author', commit) | 24 | self.fail('Invalid author %s. Resend the series with a valid patch author' % commit.author, commit=commit) |
25 | 25 | ||
26 | def test_non_auh_upgrade(self): | 26 | def test_non_auh_upgrade(self): |
27 | for commit in self.commits: | 27 | for commit in self.commits: |
28 | if self.auh_email in commit.payload: | 28 | if self.auh_email in commit.payload: |
29 | self.fail('Invalid author %s in commit message' % self.auh_email, 'Resend the series with a valid patch\'s author', commit) | 29 | self.fail('Invalid author %s. Resend the series with a valid patch author' % self.auh_email, commit=commit) |