~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/mail/tests/test_incoming.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-01 11:37:40 UTC
  • mfrom: (14612.2.10 oh-god-so-many-imports)
  • Revision ID: launchpad@pqm.canonical.com-20120101113740-o241xl1m2njr25qn
[r=wgrant][no-qa] Post-apocalyptic tree-wide format-imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
from zope.security.management import setSecurityPolicy
15
15
 
16
16
from lp.services.config import config
17
 
from lp.services.webapp.authorization import LaunchpadSecurityPolicy
18
 
from lp.testing.layers import LaunchpadZopelessLayer
19
17
from lp.services.log.logger import BufferLogger
20
18
from lp.services.mail import helpers
21
19
from lp.services.mail.incoming import (
27
25
from lp.services.mail.sendmail import MailController
28
26
from lp.services.mail.stub import TestMailer
29
27
from lp.services.mail.tests.helpers import testmails_path
 
28
from lp.services.webapp.authorization import LaunchpadSecurityPolicy
30
29
from lp.testing import TestCaseWithFactory
31
30
from lp.testing.factory import GPGSigningContext
32
31
from lp.testing.gpgkeys import import_secret_test_key
 
32
from lp.testing.layers import LaunchpadZopelessLayer
33
33
from lp.testing.mail_helpers import pop_notifications
34
34
from lp.testing.systemdocs import LayeredDocFileSuite
35
35