From 9f1805f2f04f51a533a4a0ab7a598e5a364ab6da Mon Sep 17 00:00:00 2001 From: Xavier Ordoquy Date: Thu, 11 Jun 2015 00:51:33 +0200 Subject: [PATCH] Removed unused imports. --- tests/test_renderers.py | 2 +- tests/test_testing.py | 2 +- tests/test_utils.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_renderers.py b/tests/test_renderers.py index fcd3476f6..85c6258d2 100644 --- a/tests/test_renderers.py +++ b/tests/test_renderers.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals -from django.conf.urls import patterns, url, include +from django.conf.urls import url, include from django.core.cache import cache from django.db import models from django.test import TestCase diff --git a/tests/test_testing.py b/tests/test_testing.py index 68b6ee6e3..b42c08756 100644 --- a/tests/test_testing.py +++ b/tests/test_testing.py @@ -1,6 +1,6 @@ # encoding: utf-8 from __future__ import unicode_literals -from django.conf.urls import patterns, url +from django.conf.urls import url from django.contrib.auth.models import User from django.shortcuts import redirect from django.test import TestCase diff --git a/tests/test_utils.py b/tests/test_utils.py index a8421fb78..a25518424 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -1,6 +1,6 @@ from __future__ import unicode_literals from django.core.exceptions import ImproperlyConfigured -from django.conf.urls import patterns, url +from django.conf.urls import url from django.test import TestCase from django.utils import six from rest_framework.utils.model_meta import _resolve_model