~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/librarian/ftests/test_gc.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:
26
26
    cursor,
27
27
    ISOLATION_LEVEL_AUTOCOMMIT,
28
28
    )
29
 
from canonical.launchpad.database.librarian import (
30
 
    LibraryFileAlias,
31
 
    LibraryFileContent,
32
 
    )
33
29
from canonical.librarian import librariangc
34
30
from canonical.librarian.client import LibrarianClient
35
31
from canonical.testing.layers import LaunchpadZopelessLayer
 
32
from lp.services.librarian.model import (
 
33
    LibraryFileAlias,
 
34
    LibraryFileContent,
 
35
    )
36
36
from lp.services.log.logger import BufferLogger
37
37
from lp.services.utils import utc_now
38
38
from lp.testing import TestCase