~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/tests/test_nameblacklist.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:
9
9
from zope.component import getUtility
10
10
from zope.interface.verify import verifyObject
11
11
 
12
 
from lp.services.database.lpstorm import IStore
13
 
from lp.services.webapp.authorization import check_permission
14
 
from lp.testing.layers import (
15
 
    DatabaseFunctionalLayer,
16
 
    ZopelessDatabaseLayer,
17
 
    )
18
12
from lp.app.interfaces.launchpad import ILaunchpadCelebrities
19
13
from lp.registry.interfaces.nameblacklist import (
20
14
    INameBlacklist,
21
15
    INameBlacklistSet,
22
16
    )
 
17
from lp.services.database.lpstorm import IStore
 
18
from lp.services.webapp.authorization import check_permission
23
19
from lp.testing import (
24
20
    ANONYMOUS,
25
21
    login,
26
22
    login_celebrity,
27
23
    TestCaseWithFactory,
28
24
    )
 
25
from lp.testing.layers import (
 
26
    DatabaseFunctionalLayer,
 
27
    ZopelessDatabaseLayer,
 
28
    )
29
29
 
30
30
 
31
31
class TestNameBlacklist(TestCaseWithFactory):