~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: William Grant
  • Date: 2011-12-09 01:21:32 UTC
  • mto: (14455.3.6 more-canonical-purge)
  • mto: This revision was merged to the branch mainline in revision 14467.
  • Revision ID: william.grant@canonical.com-20111209012132-i73v182bfiafu3mq
Drop imports from canonical.launchpad.ftests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
import gpgme
18
18
from zope.component import getUtility
19
19
 
20
 
from canonical.launchpad.ftests import (
21
 
    import_public_test_keys,
22
 
    import_secret_test_key,
23
 
    )
24
20
from canonical.testing.layers import DatabaseFunctionalLayer
25
21
from lp.registry.interfaces.person import IPersonSet
26
22
from lp.services.gpg.interfaces import IGPGHandler
32
28
from lp.services.mail.signedmessage import signed_message_from_string
33
29
from lp.testing import TestCaseWithFactory
34
30
from lp.testing.factory import GPGSigningContext
 
31
from lp.testing.gpgkeys import (
 
32
    import_public_test_keys,
 
33
    import_secret_test_key,
 
34
    )
35
35
 
36
36
 
37
37
class TestSignedMessage(TestCaseWithFactory):