From cfcf4b3605f9653e4e056088d89932b2a0e4281b Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Mon, 1 Jul 2013 14:22:27 +0200 Subject: Stopped using django.utils.unittest in the test suite. Refs #20680. --- tests/validators/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/validators') diff --git a/tests/validators/tests.py b/tests/validators/tests.py index a1555d8e91..ec3e2dc8c1 100644 --- a/tests/validators/tests.py +++ b/tests/validators/tests.py @@ -1,14 +1,14 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals +from datetime import datetime, timedelta import re import types -from datetime import datetime, timedelta +from unittest import TestCase from django.core.exceptions import ValidationError from django.core.validators import * from django.test.utils import str_prefix -from django.utils.unittest import TestCase NOW = datetime.now() -- cgit v1.3