~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/archivepublisher/tests/test_publisherconfig.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:
11
11
from zope.interface.verify import verifyObject
12
12
from zope.security.interfaces import Unauthorized
13
13
 
14
 
from lp.testing.layers import (
15
 
    DatabaseFunctionalLayer,
16
 
    ZopelessDatabaseLayer,
17
 
    )
18
14
from lp.archivepublisher.interfaces.publisherconfig import (
19
15
    IPublisherConfig,
20
16
    IPublisherConfigSet,
26
22
    login,
27
23
    TestCaseWithFactory,
28
24
    )
 
25
from lp.testing.layers import (
 
26
    DatabaseFunctionalLayer,
 
27
    ZopelessDatabaseLayer,
 
28
    )
29
29
from lp.testing.sampledata import LAUNCHPAD_ADMIN
30
30
 
31
31