~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/browser/tests/test_team_view.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:
10
10
import transaction
11
11
from zope.security.proxy import removeSecurityProxy
12
12
 
13
 
from lp.services.webapp.authorization import check_permission
14
 
from lp.services.webapp.publisher import canonical_url
15
 
from lp.testing.layers import (
16
 
    DatabaseFunctionalLayer,
17
 
    LaunchpadFunctionalLayer,
18
 
    )
19
13
from lp.registry.interfaces.mailinglist import MailingListStatus
20
14
from lp.registry.interfaces.person import (
21
15
    CLOSED_TEAM_POLICY,
25
19
    TeamSubscriptionPolicy,
26
20
    )
27
21
from lp.services.propertycache import get_property_cache
 
22
from lp.services.webapp.authorization import check_permission
 
23
from lp.services.webapp.publisher import canonical_url
28
24
from lp.soyuz.enums import ArchiveStatus
29
25
from lp.testing import (
30
26
    login_person,
31
27
    person_logged_in,
32
28
    TestCaseWithFactory,
33
29
    )
 
30
from lp.testing.layers import (
 
31
    DatabaseFunctionalLayer,
 
32
    LaunchpadFunctionalLayer,
 
33
    )
34
34
from lp.testing.views import (
35
35
    create_initialized_view,
36
36
    create_view,