~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/model/tests/test_codereviewcomment.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
from textwrap import dedent
7
7
 
8
 
from lp.testing.layers import (
9
 
    DatabaseFunctionalLayer,
10
 
    LaunchpadFunctionalLayer,
11
 
    )
12
8
from lp.code.enums import CodeReviewVote
13
9
from lp.code.event.branchmergeproposal import NewCodeReviewCommentEvent
14
10
from lp.code.model.codereviewcomment import quote_text_as_email
17
13
    TestCase,
18
14
    TestCaseWithFactory,
19
15
    )
 
16
from lp.testing.layers import (
 
17
    DatabaseFunctionalLayer,
 
18
    LaunchpadFunctionalLayer,
 
19
    )
20
20
 
21
21
 
22
22
class TestCodeReviewComment(TestCaseWithFactory):