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

« back to all changes in this revision

Viewing changes to src/api/v20/tests/test_login.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:
4
4
from django.core.serializers.json import DateTimeAwareJSONEncoder
5
5
from django.core.urlresolvers import reverse
6
6
from django.utils.timezone import now
 
7
from timeline import Timeline
7
8
 
8
9
from api.v20 import handlers
9
10
from identityprovider.models import Token
12
13
from identityprovider.tests.test_auth import AuthLogTestCaseMixin
13
14
from identityprovider.tests.utils import SSOBaseTestCase, TimelineActionMixin
14
15
 
15
 
from timeline import Timeline
16
16
 
17
17
handler = handlers.AccountLoginHandler()
18
18