~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/tests/test_errors.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:
14
14
    UNAUTHORIZED,
15
15
    )
16
16
 
17
 
from lp.testing.layers import FunctionalLayer
18
17
from lp.registry.errors import (
19
18
    CannotTransitionToCountryMirror,
20
19
    DeleteSubscriptionError,
30
29
    UserCannotSubscribePerson,
31
30
    )
32
31
from lp.testing import TestCase
 
32
from lp.testing.layers import FunctionalLayer
33
33
from lp.testing.views import create_webservice_error_view
34
34
 
35
35