~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/testing/tests/test_factory.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:
12
12
from zope.component import getUtility
13
13
from zope.security.proxy import removeSecurityProxy
14
14
 
15
 
from lp.services.database.lpstorm import IStore
16
 
from lp.services.webapp.interfaces import ILaunchBag
17
 
from lp.testing.layers import (
18
 
    DatabaseFunctionalLayer,
19
 
    LaunchpadZopelessLayer,
20
 
    )
21
15
from lp.bugs.interfaces.cve import (
22
16
    CveStatus,
23
17
    ICve,
31
25
from lp.registry.interfaces.distroseries import IDistroSeries
32
26
from lp.registry.interfaces.sourcepackage import SourcePackageFileType
33
27
from lp.registry.interfaces.suitesourcepackage import ISuiteSourcePackage
 
28
from lp.services.database.lpstorm import IStore
 
29
from lp.services.webapp.interfaces import ILaunchBag
34
30
from lp.services.worlddata.interfaces.language import ILanguage
35
31
from lp.soyuz.enums import (
36
32
    BinaryPackageFileType,
58
54
from lp.soyuz.model.component import ComponentSelection
59
55
from lp.testing import TestCaseWithFactory
60
56
from lp.testing.factory import is_security_proxied_or_harmless
 
57
from lp.testing.layers import (
 
58
    DatabaseFunctionalLayer,
 
59
    LaunchpadZopelessLayer,
 
60
    )
61
61
from lp.testing.matchers import (
62
62
    IsProxied,
63
63
    Provides,