~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/tests/test_apportjob.py

  • Committer: William Grant
  • Date: 2011-12-22 05:37:22 UTC
  • mto: This revision was merged to the branch mainline in revision 14581.
  • Revision ID: william.grant@canonical.com-20111222053722-gm6h9zi3lioz00ky
Move librarian stuff from canonical.launchpad to lp.services.librarian. canonical.librarian remains untouched.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
from zope.security.proxy import removeSecurityProxy
14
14
 
15
15
from canonical.config import config
16
 
from canonical.launchpad.interfaces.librarian import ILibraryFileAliasSet
17
 
from lp.services.temporaryblobstorage.interfaces import (
18
 
    ITemporaryStorageManager,
19
 
    )
20
 
from lp.services.scripts.tests import run_script
21
16
from canonical.launchpad.webapp.interfaces import ILaunchpadRoot
22
17
from canonical.testing.layers import (
23
18
    LaunchpadFunctionalLayer,
38
33
    FileBugDataParser,
39
34
    )
40
35
from lp.services.job.interfaces.job import JobStatus
 
36
from lp.services.librarian.interfaces import ILibraryFileAliasSet
 
37
from lp.services.scripts.tests import run_script
 
38
from lp.services.temporaryblobstorage.interfaces import (
 
39
    ITemporaryStorageManager,
 
40
    )
41
41
from lp.testing import (
42
42
    login_person,
43
43
    TestCaseWithFactory,