~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-01 11:37:40 UTC
  • mfrom: (14612.2.10 oh-god-so-many-imports)
  • Revision ID: launchpad@pqm.canonical.com-20120101113740-o241xl1m2njr25qn
[r=wgrant][no-qa] Post-apocalyptic tree-wide format-imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
from zope.component import getUtility
12
12
from zope.security.proxy import removeSecurityProxy
13
13
 
14
 
from lp.services.config import config
15
 
from lp.services.webapp.publisher import canonical_url
16
 
from lp.testing.layers import DatabaseFunctionalLayer
17
14
from lp.app.enums import ServiceUsage
18
15
from lp.registry.browser.product import ProductLicenseMixin
19
16
from lp.registry.interfaces.product import (
20
17
    IProductSet,
21
18
    License,
22
19
    )
 
20
from lp.services.config import config
 
21
from lp.services.webapp.publisher import canonical_url
23
22
from lp.testing import (
24
23
    login_celebrity,
25
24
    login_person,
27
26
    TestCaseWithFactory,
28
27
    )
29
28
from lp.testing.fixture import DemoMode
 
29
from lp.testing.layers import DatabaseFunctionalLayer
30
30
from lp.testing.mail_helpers import pop_notifications
31
31
from lp.testing.pages import find_tag_by_id
32
32
from lp.testing.service_usage_helpers import set_service_usage