~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/tests/test_bugtracker.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:
25
25
from zope.security.interfaces import Unauthorized
26
26
from zope.security.proxy import removeSecurityProxy
27
27
 
28
 
from lp.testing.layers import (
29
 
    DatabaseFunctionalLayer,
30
 
    LaunchpadFunctionalLayer,
31
 
    )
32
28
from lp.app.interfaces.launchpad import ILaunchpadCelebrities
33
29
from lp.bugs.externalbugtracker import (
34
30
    BugTrackerConnectError,
52
48
    TestCase,
53
49
    TestCaseWithFactory,
54
50
    )
 
51
from lp.testing.layers import (
 
52
    DatabaseFunctionalLayer,
 
53
    LaunchpadFunctionalLayer,
 
54
    )
55
55
from lp.testing.sampledata import ADMIN_EMAIL
56
56
 
57
57