summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nova/tests/test_misc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/tests/test_misc.py b/nova/tests/test_misc.py
index 45c496568..f30a1bfba 100644
--- a/nova/tests/test_misc.py
+++ b/nova/tests/test_misc.py
@@ -71,7 +71,7 @@ class ProjectTestCase(test.TestCase):
for email in commands.getoutput('git log --format=%ae').split():
if not email:
continue
- if "jenkins@review.openstack.org" in email:
+ if "jenkins" in email and "openstack.org" in email:
continue
email = '<' + email + '>'
contributors.add(str_dict_replace(email, mailmap))