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

« back to all changes in this revision

Viewing changes to src/identityprovider/tests/test_utils.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:
13
13
 
14
14
from identityprovider import utils
15
15
from identityprovider.models.person import Person
 
16
from identityprovider.tests.utils import SSOBaseTestCase
16
17
from identityprovider.utils import (
17
18
    canonical_url,
18
19
    clean_sessions_until,
19
20
    generate_random_string,
 
21
    get_provider_url,
20
22
    polite_form_errors,
21
23
    redirection_url_for_token,
22
24
    validate_launchpad_password,
23
25
)
24
 
from identityprovider.tests.utils import SSOBaseTestCase
25
 
from identityprovider.utils import get_provider_url
26
26
 
27
27
 
28
28
class CanonicalUrlTestCase(SSOBaseTestCase):