~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/browser/tests/test_bugtarget_subscription.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-24 22:30:39 UTC
  • mfrom: (14600.1.14 apocalypta-1)
  • Revision ID: launchpad@pqm.canonical.com-20111224223039-z7zbq34zfurx9gce
[rs=sinzui][no-qa] Move c.l modules to lp.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
__metaclass__ = type
7
7
 
8
 
from canonical.launchpad.ftests import LaunchpadFormHarness
9
8
from canonical.testing.layers import LaunchpadFunctionalLayer
10
9
from lp.bugs.browser.bugtarget import TargetSubscriptionView
11
10
from lp.testing import (
12
11
    person_logged_in,
13
12
    TestCaseWithFactory,
14
13
    )
 
14
from lp.testing.deprecated import LaunchpadFormHarness
15
15
from lp.testing.views import create_view
16
16
 
17
17