~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/librarian/ftests/test_gc.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-22 12:41:32 UTC
  • mfrom: (14578.2.5 librarian-services)
  • Revision ID: launchpad@pqm.canonical.com-20111222124132-s1yqnjjb1jl7384h
[r=wgrant][no-qa] Move most non-server librarian stuff from around
        the tree to lp.services.librarian. canonical.launchpad.{browser,
        database} are no longer.

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