~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/tests/test_commercialprojects_vocabularies.py

  • Committer: William Grant
  • Date: 2012-01-01 02:58:52 UTC
  • mto: This revision was merged to the branch mainline in revision 14614.
  • Revision ID: william.grant@canonical.com-20120101025852-p6ouypk9mzb5usn8
format-imports on lib/. So many imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
from zope.component import getUtility
11
11
from zope.security.proxy import removeSecurityProxy
12
12
 
13
 
from lp.testing import (
14
 
    ANONYMOUS,
15
 
    login,
16
 
    logout,
17
 
    )
18
 
from lp.testing.layers import LaunchpadFunctionalLayer
19
13
from lp.registry.interfaces.product import (
20
14
    IProductSet,
21
15
    License,
22
16
    )
23
17
from lp.registry.vocabularies import CommercialProjectsVocabulary
24
18
from lp.services.identity.interfaces.emailaddress import EmailAddressStatus
 
19
from lp.testing import (
 
20
    ANONYMOUS,
 
21
    login,
 
22
    logout,
 
23
    )
25
24
from lp.testing.factory import LaunchpadObjectFactory
 
25
from lp.testing.layers import LaunchpadFunctionalLayer
26
26
 
27
27
 
28
28
class TestCommProjVocabulary(TestCase):