~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/tests/test_process_job_sources_cronjob.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:
8
8
import transaction
9
9
from zope.component import getUtility
10
10
 
11
 
from lp.services.config import config
12
 
from lp.services.scripts.tests import run_script
13
 
from lp.testing.layers import LaunchpadScriptLayer
14
11
from lp.registry.interfaces.teammembership import (
15
12
    ITeamMembershipSet,
16
13
    TeamMembershipStatus,
17
14
    )
 
15
from lp.services.config import config
 
16
from lp.services.scripts.tests import run_script
18
17
from lp.testing import (
19
18
    login_person,
20
19
    TestCaseWithFactory,
21
20
    )
 
21
from lp.testing.layers import LaunchpadScriptLayer
22
22
from lp.testing.matchers import DocTestMatches
23
23
 
24
24