~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/model/tests/test_branchlookup.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:
9
9
from zope.component import getUtility
10
10
from zope.security.proxy import removeSecurityProxy
11
11
 
12
 
from lp.services.config import config
13
 
from lp.testing.layers import DatabaseFunctionalLayer
14
12
from lp.code.errors import (
15
13
    CannotHaveLinkedBranch,
16
14
    InvalidNamespace,
38
36
    NoSuchProduct,
39
37
    )
40
38
from lp.registry.interfaces.productseries import NoSuchProductSeries
 
39
from lp.services.config import config
41
40
from lp.testing import (
42
41
    person_logged_in,
43
42
    run_with_login,
44
43
    TestCaseWithFactory,
45
44
    )
 
45
from lp.testing.layers import DatabaseFunctionalLayer
46
46
 
47
47
 
48
48
class TestGetByUniqueName(TestCaseWithFactory):