~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/webapp/tests/test_authutility.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:
16
16
from zope.publisher.browser import TestRequest
17
17
from zope.publisher.interfaces.http import IHTTPCredentials
18
18
 
 
19
from lp.registry.interfaces.person import IPerson
 
20
from lp.services.identity.interfaces.account import IAccount
19
21
from lp.services.webapp.authentication import (
20
22
    LaunchpadPrincipal,
21
23
    PlacelessAuthUtility,
25
27
    IPlacelessAuthUtility,
26
28
    IPlacelessLoginSource,
27
29
    )
28
 
from lp.registry.interfaces.person import IPerson
29
 
from lp.services.identity.interfaces.account import IAccount
30
30
 
31
31
 
32
32
class DummyPerson(object):