diff options
| author | Xavier Ordoquy | 2014-04-30 22:32:29 +0200 |
|---|---|---|
| committer | Xavier Ordoquy | 2014-04-30 22:32:29 +0200 |
| commit | cd93cd195ef83a443e8fe7d745b2947d2636f4ad (patch) | |
| tree | 1567dcf2df5547b22d6cf29fbdd60d1f36835865 | |
| parent | 56b43903162c5f3d64fb32945b87168887d283cc (diff) | |
| download | django-rest-framework-cd93cd195ef83a443e8fe7d745b2947d2636f4ad.tar.bz2 | |
Use url functions from Django itself.
| -rw-r--r-- | rest_framework/tests/test_authentication.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rest_framework/tests/test_authentication.py b/rest_framework/tests/test_authentication.py index 09203057..af292bf1 100644 --- a/rest_framework/tests/test_authentication.py +++ b/rest_framework/tests/test_authentication.py @@ -20,7 +20,7 @@ from rest_framework.authentication import ( OAuth2Authentication ) from rest_framework.authtoken.models import Token -from rest_framework.compat import patterns, url, include, six +from rest_framework.compat import six from rest_framework.compat import oauth2_provider, oauth2_provider_scope from rest_framework.compat import oauth, oauth_provider from rest_framework.test import APIRequestFactory, APIClient |
