summaryrefslogtreecommitdiffstats
path: root/meta/lib/patchtest/tests/test_mbox_description.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/patchtest/tests/test_mbox_description.py')
-rw-r--r--meta/lib/patchtest/tests/test_mbox_description.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/meta/lib/patchtest/tests/test_mbox_description.py b/meta/lib/patchtest/tests/test_mbox_description.py
index 7addc6b5f7..46bedd46ce 100644
--- a/meta/lib/patchtest/tests/test_mbox_description.py
+++ b/meta/lib/patchtest/tests/test_mbox_description.py
@@ -11,7 +11,5 @@ class CommitMessage(base.Base):
11 def test_commit_message_presence(self): 11 def test_commit_message_presence(self):
12 for commit in CommitMessage.commits: 12 for commit in CommitMessage.commits:
13 if not commit.commit_message.strip(): 13 if not commit.commit_message.strip():
14 self.fail('Patch is missing a descriptive commit message', 14 self.fail('Mbox is missing a descriptive commit message. Please include a commit message on your patch explaining the change', commit=commit)
15 'Please include a commit message on your patch explaining the change (most importantly why the change is being made)',
16 commit)
17 15