~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/answers/tests/test_question_webservice.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:
11
11
import transaction
12
12
from zope.component import getUtility
13
13
 
14
 
from lp.testing.layers import (
15
 
    AppServerLayer,
16
 
    DatabaseFunctionalLayer,
17
 
    FunctionalLayer,
18
 
    )
19
14
from lp.answers.errors import (
20
15
    AddAnswerContactError,
21
16
    FAQTargetError,
35
30
    TestCaseWithFactory,
36
31
    ws_object,
37
32
    )
 
33
from lp.testing.layers import (
 
34
    AppServerLayer,
 
35
    DatabaseFunctionalLayer,
 
36
    FunctionalLayer,
 
37
    )
38
38
from lp.testing.pages import LaunchpadWebServiceCaller
39
39
from lp.testing.views import create_webservice_error_view
40
40