~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/tests/test_pillaraffiliation.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 testtools.matchers import Equals
10
10
from zope.component import getUtility
11
11
 
12
 
from lp.testing.layers import (
13
 
    DatabaseFunctionalLayer,
14
 
    LaunchpadFunctionalLayer,
15
 
    )
16
12
from lp.registry.model.pillaraffiliation import IHasAffiliation
17
13
from lp.services.worlddata.interfaces.language import ILanguageSet
18
14
from lp.testing import (
20
16
    StormStatementRecorder,
21
17
    TestCaseWithFactory,
22
18
    )
 
19
from lp.testing.layers import (
 
20
    DatabaseFunctionalLayer,
 
21
    LaunchpadFunctionalLayer,
 
22
    )
23
23
from lp.testing.matchers import HasQueryCount
24
24
 
25
25