aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/tests/test_authentication.py
diff options
context:
space:
mode:
authorTom Christie2013-09-25 10:30:04 +0100
committerTom Christie2013-09-25 10:30:04 +0100
commite441f85109e64345a12e65062fc0e51c5787e67f (patch)
treee04c0ba1e2891b0c6011ca319f166c57159f3d26 /rest_framework/tests/test_authentication.py
parent21cd6386593aea0b122abec1c5cc3bd5c544aa87 (diff)
downloaddjango-rest-framework-e441f85109e64345a12e65062fc0e51c5787e67f.tar.bz2
Drop 1.3 support
Diffstat (limited to 'rest_framework/tests/test_authentication.py')
-rw-r--r--rest_framework/tests/test_authentication.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rest_framework/tests/test_authentication.py b/rest_framework/tests/test_authentication.py
index a44813b6..e9a817c0 100644
--- a/rest_framework/tests/test_authentication.py
+++ b/rest_framework/tests/test_authentication.py
@@ -1,4 +1,5 @@
from __future__ import unicode_literals
+from django.conf.urls import patterns, url, include
from django.contrib.auth.models import User
from django.http import HttpResponse
from django.test import TestCase
@@ -18,7 +19,6 @@ from rest_framework.authentication import (
OAuth2Authentication
)
from rest_framework.authtoken.models import Token
-from rest_framework.compat import patterns, url, include
from rest_framework.compat import oauth2_provider, oauth2_provider_models, oauth2_provider_scope
from rest_framework.compat import oauth, oauth_provider
from rest_framework.test import APIRequestFactory, APIClient