~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/model/tests/test_linkedbranch.py

Merged fix-retest-colorize into redo-read-only-transactions-in-buildmaster, resolving several import conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 
11
11
from zope.security.proxy import removeSecurityProxy
12
12
 
13
 
from canonical.testing.layers import DatabaseFunctionalLayer
14
13
from lp.code.interfaces.linkedbranch import (
15
14
    CannotHaveLinkedBranch,
16
15
    get_linked_to_branch,
24
23
    TestCaseWithFactory,
25
24
    )
26
25
from lp.testing.factory import remove_security_proxy_and_shout_at_engineer
 
26
from lp.testing.layers import DatabaseFunctionalLayer
27
27
 
28
28
 
29
29
class TestProductSeriesLinkedBranch(TestCaseWithFactory):