Skip to content
This repository was archived by the owner on May 26, 2020. It is now read-only.

Commit ec43822

Browse files
committed
Cleanup unused imports in tests
1 parent 72e907a commit ec43822

File tree

3 files changed

+0
-11
lines changed

3 files changed

+0
-11
lines changed

rest_framework_jwt/tests/test_authentication.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
import base64
2-
import json
3-
41
from django.test import TestCase
52
from django.http import HttpResponse
63
from django.contrib.auth.models import User

rest_framework_jwt/tests/test_serializers.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
1-
import json
2-
31
from django.test import TestCase
42
from django.contrib.auth.models import User
5-
from rest_framework import status
63

74
from rest_framework_jwt.serializers import JSONWebTokenSerializer
8-
from rest_framework_jwt.jwt import base64url_decode
95
from rest_framework_jwt import utils
106

117

rest_framework_jwt/tests/test_views.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
import base64
2-
import json
3-
41
from django.test import TestCase
52
from django.contrib.auth.models import User
63
from rest_framework import status
@@ -20,7 +17,6 @@ class ObtainJSONWebTokenTests(TestCase):
2017
urls = 'rest_framework_jwt.tests.test_views'
2118

2219
def setUp(self):
23-
self.csrf_client = APIClient(enforce_csrf_checks=True)
2420
self.email = '[email protected]'
2521
self.username = 'jpueblo'
2622
self.password = 'password'

0 commit comments

Comments
 (0)