diff options
Diffstat (limited to 'src/mailman_pgp/runners')
| -rw-r--r-- | src/mailman_pgp/runners/tests/test_incoming.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mailman_pgp/runners/tests/test_incoming.py b/src/mailman_pgp/runners/tests/test_incoming.py index d51dbb8..f98aede 100644 --- a/src/mailman_pgp/runners/tests/test_incoming.py +++ b/src/mailman_pgp/runners/tests/test_incoming.py @@ -21,9 +21,9 @@ from mailman.app.lifecycle import create_list from mailman.interfaces.action import Action from mailman.interfaces.member import MemberRole from mailman.interfaces.usermanager import IUserManager -from mailman.testing.helpers import (make_testable_runner, - specialized_message_from_string as mfs, - get_queue_messages, set_preferred) +from mailman.testing.helpers import (get_queue_messages, make_testable_runner, + set_preferred, + specialized_message_from_string as mfs) from pgpy import PGPMessage from zope.component import getUtility @@ -63,7 +63,7 @@ class TestIncoming(TestCase): def test_pass_default(self): with mm_transaction(): - ordinary_list = create_list('ordinary@example.com') + create_list('ordinary@example.com') msg = mfs("""\ From: anne@example.com @@ -102,7 +102,7 @@ To: ordinary@example.com get_queue_messages('in_default', expected_count=1) def test_decrypt(self): - for i in range(15): # pragma: no cover + for i in range(15): # pragma: no cover if self.pgp_list.pubkey is not None: break sleep(1) |
