~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/browser/tests/test_views.py

Merged fix-retest-colorize into redo-read-only-transactions-in-buildmaster.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
import os
10
10
import unittest
11
11
 
12
 
from canonical.launchpad.testing.systemdocs import (
 
12
from canonical.testing.layers import (
 
13
    DatabaseFunctionalLayer,
 
14
    LaunchpadFunctionalLayer,
 
15
    )
 
16
from lp.testing.systemdocs import (
13
17
    LayeredDocFileSuite,
14
18
    setUp,
15
19
    tearDown,
16
20
    )
17
 
from canonical.testing.layers import (
18
 
    DatabaseFunctionalLayer,
19
 
    LaunchpadFunctionalLayer,
20
 
    )
21
21
 
22
22
 
23
23
here = os.path.dirname(os.path.realpath(__file__))