~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/browser/tests/test_structuralsubscription.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:
8
8
import transaction
9
9
from zope.publisher.interfaces import NotFound
10
10
 
11
 
from lp.testing import (
12
 
    login,
13
 
    logout,
14
 
    )
15
 
from lp.services.webapp.publisher import canonical_url
16
 
from lp.testing.layers import (
17
 
    AppServerLayer,
18
 
    DatabaseFunctionalLayer,
19
 
    )
20
11
from lp.registry.browser.distribution import DistributionNavigation
21
12
from lp.registry.browser.distributionsourcepackage import (
22
13
    DistributionSourcePackageNavigation,
26
17
from lp.registry.browser.product import ProductNavigation
27
18
from lp.registry.browser.productseries import ProductSeriesNavigation
28
19
from lp.registry.browser.project import ProjectNavigation
 
20
from lp.services.webapp.publisher import canonical_url
29
21
from lp.testing import (
30
22
    FakeLaunchpadRequest,
 
23
    login,
 
24
    logout,
31
25
    person_logged_in,
32
26
    TestCaseWithFactory,
33
27
    ws_object,
34
28
    )
 
29
from lp.testing.layers import (
 
30
    AppServerLayer,
 
31
    DatabaseFunctionalLayer,
 
32
    )
35
33
from lp.testing.views import create_initialized_view
36
34
 
37
35