~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/scripts/tests/test_sendbranchmail.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:
5
5
 
6
6
import transaction
7
7
 
8
 
from lp.services.scripts.tests import run_script
9
 
from lp.testing.layers import ZopelessAppServerLayer
10
8
from lp.code.enums import (
11
9
    BranchSubscriptionDiffSize,
12
10
    BranchSubscriptionNotificationLevel,
17
15
    RevisionsAddedJob,
18
16
    )
19
17
from lp.services.osutils import override_environ
 
18
from lp.services.scripts.tests import run_script
20
19
from lp.testing import TestCaseWithFactory
 
20
from lp.testing.layers import ZopelessAppServerLayer
21
21
 
22
22
 
23
23
class TestSendbranchmail(TestCaseWithFactory):