~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/browser/tests/test_distroseries.py

[r=wgrant][no-qa] Merge canonical.launchpad.testing into lp.testing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
from canonical.config import config
38
38
from canonical.database.constants import UTC_NOW
39
39
from canonical.database.sqlbase import flush_database_caches
40
 
from canonical.launchpad.testing.pages import (
41
 
    extract_text,
42
 
    find_tag_by_id,
43
 
    )
44
40
from canonical.launchpad.webapp.authorization import check_permission
45
41
from canonical.launchpad.webapp.batching import BatchNavigator
46
42
from canonical.launchpad.webapp.interaction import get_current_principal
121
117
    EqualsIgnoringWhitespace,
122
118
    HasQueryCount,
123
119
    )
 
120
from lp.testing.pages import (
 
121
    extract_text,
 
122
    find_tag_by_id,
 
123
    )
124
124
from lp.testing.views import create_initialized_view
125
125
 
126
126