diff options
author | Victor Shyba <victor.shyba@gmail.com> | 2015-02-23 16:50:10 -0300 |
---|---|---|
committer | Victor Shyba <victor.shyba@gmail.com> | 2015-02-23 16:50:10 -0300 |
commit | b967397c20e216b3e2d34926765ee5c6e5fcb8c3 (patch) | |
tree | 1b0248bbc739508016dc8ed63f9b54b84ebdedd2 /service/test/integration/test_contacts.py | |
parent | c37c3b425021eb485376b8b776c248afb2a9b2a6 (diff) |
for #174, mailer daemon is now filtered from suggestions
Diffstat (limited to 'service/test/integration/test_contacts.py')
-rw-r--r-- | service/test/integration/test_contacts.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/service/test/integration/test_contacts.py b/service/test/integration/test_contacts.py index d96abd14..3a510346 100644 --- a/service/test/integration/test_contacts.py +++ b/service/test/integration/test_contacts.py @@ -100,6 +100,7 @@ class ContactsTest(SoledadTestBase): def _assert(contacts): self.assertNotIn('this_mail_was_bounced@domain.com', contacts) + self.assertNotIn("MAILER-DAEMON@domain.org (Mail Delivery System)", contacts) self.assertIn('this_mail_was_not@bounced.com', contacts) d.addCallback(_assert) return d |