~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/oauth/tests/test_oauth.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
from storm.zope.interfaces import IZStorm
12
12
from zope.component import getUtility
13
13
 
14
 
from lp.services.webapp.interfaces import (
15
 
    MAIN_STORE,
16
 
    MASTER_FLAVOR,
17
 
    )
18
 
from lp.testing.layers import DatabaseFunctionalLayer
19
14
from lp.services.oauth.model import (
20
15
    OAuthAccessToken,
21
16
    OAuthConsumer,
22
17
    OAuthNonce,
23
18
    OAuthRequestToken,
24
19
    )
 
20
from lp.services.webapp.interfaces import (
 
21
    MAIN_STORE,
 
22
    MASTER_FLAVOR,
 
23
    )
 
24
from lp.testing.layers import DatabaseFunctionalLayer
25
25
 
26
26
 
27
27
class BaseOAuthTestCase(unittest.TestCase):