~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/browser/tests/test_bugattachment_file_access.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:
19
19
from zope.security.interfaces import Unauthorized
20
20
from zope.security.management import endInteraction
21
21
 
 
22
from lp.bugs.browser.bugattachment import BugAttachmentFileNavigation
 
23
from lp.services.librarian.interfaces import ILibraryFileAliasWithParent
22
24
from lp.services.webapp.interfaces import ILaunchBag
23
25
from lp.services.webapp.publisher import RedirectionView
24
26
from lp.services.webapp.servers import LaunchpadTestRequest
25
 
from lp.testing.layers import (
26
 
    AppServerLayer,
27
 
    LaunchpadFunctionalLayer,
28
 
    )
29
 
from lp.bugs.browser.bugattachment import BugAttachmentFileNavigation
30
 
from lp.services.librarian.interfaces import ILibraryFileAliasWithParent
31
27
from lp.testing import (
32
28
    launchpadlib_for,
33
29
    login_person,
34
30
    TestCaseWithFactory,
35
31
    ws_object,
36
32
    )
 
33
from lp.testing.layers import (
 
34
    AppServerLayer,
 
35
    LaunchpadFunctionalLayer,
 
36
    )
37
37
from lp.testing.pages import LaunchpadWebServiceCaller
38
38
 
39
39