~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/browser/tests/test_bugnomination.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 testtools.matchers import Not
12
12
from zope.component import getUtility
13
13
 
 
14
from lp.registry.interfaces.series import SeriesStatus
14
15
from lp.services.webapp.interaction import get_current_principal
15
16
from lp.services.webapp.interfaces import (
16
17
    BrowserNotificationLevel,
17
18
    ILaunchBag,
18
19
    )
19
20
from lp.services.webapp.publisher import canonical_url
20
 
from lp.testing.layers import DatabaseFunctionalLayer
21
 
from lp.registry.interfaces.series import SeriesStatus
22
21
from lp.testing import (
23
22
    login_person,
24
23
    person_logged_in,
25
24
    TestCaseWithFactory,
26
25
    )
 
26
from lp.testing.layers import DatabaseFunctionalLayer
27
27
from lp.testing.matchers import Contains
28
28
from lp.testing.views import create_initialized_view
29
29