~roadmr/canonical-identity-provider/fix-deprecation-warnings-1

« back to all changes in this revision

Viewing changes to src/identityprovider/tests/test_views_server.py

  • Committer: Tom Wardill
  • Date: 2018-02-14 14:05:59 UTC
  • mfrom: (1602 work)
  • mto: (1597.1.44 django-1.10)
  • mto: This revision was merged to the branch mainline in revision 1603.
  • Revision ID: tom.wardill@canonical.com-20180214140559-ow5txzwy46nopws2
Merge flake8 changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
    AuthLogType,
57
57
    EmailStatus,
58
58
)
59
 
from identityprovider.utils import generate_random_string
60
 
from identityprovider.views import server
61
 
from identityprovider.views.testing import MockLaunchpad
62
59
from identityprovider.tests import DEFAULT_USER_PASSWORD
63
60
from identityprovider.tests.test_auth import AuthLogTestCaseMixin
64
61
from identityprovider.tests.utils import (
65
62
    AuthenticatedTestCase,
66
63
    SSOBaseTestCase,
67
64
)
68
 
from identityprovider.utils import get_provider_url
 
65
from identityprovider.utils import generate_random_string, get_provider_url
 
66
from identityprovider.views import server
 
67
from identityprovider.views.testing import MockLaunchpad
69
68
from webui.views.const import DETAILS_UPDATED
70
69
 
71
70