~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/testing/yuixhr.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:
33
33
from zope.security.proxy import removeSecurityProxy
34
34
from zope.session.interfaces import IClientIdManager
35
35
 
 
36
from lp.app.versioninfo import revno
36
37
from lp.services.config import config
37
38
from lp.services.webapp.interfaces import (
38
39
    IOpenLaunchBag,
40
41
    )
41
42
from lp.services.webapp.login import logInPrincipal
42
43
from lp.services.webapp.publisher import LaunchpadView
 
44
from lp.testing import AbstractYUITestCase
43
45
from lp.testing.layers import (
44
46
    DatabaseLayer,
45
47
    LaunchpadLayer,
47
49
    LibrarianLayer,
48
50
    YUIAppServerLayer,
49
51
    )
50
 
from lp.app.versioninfo import revno
51
 
from lp.testing import AbstractYUITestCase
52
52
 
53
53
 
54
54
EXPLOSIVE_ERRORS = (SystemExit, MemoryError, KeyboardInterrupt)