~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/model/tests/test_branchcloud.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:
15
15
import transaction
16
16
from zope.component import getUtility
17
17
 
18
 
from lp.testing.layers import DatabaseFunctionalLayer
19
18
from lp.code.interfaces.branch import IBranchCloud
20
19
from lp.code.model.revision import RevisionCache
21
20
from lp.code.tests.helpers import (
26
25
    TestCaseWithFactory,
27
26
    time_counter,
28
27
    )
 
28
from lp.testing.layers import DatabaseFunctionalLayer
29
29
 
30
30
 
31
31
class TestBranchCloud(TestCaseWithFactory):