diff options
author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-07-01 14:22:27 +0200 |
---|---|---|
committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-07-01 14:29:33 +0200 |
commit | cfcf4b3605f9653e4e056088d89932b2a0e4281b (patch) | |
tree | 1eed1ebdb087b26abeddf5245fc723930d14d847 /tests/test_utils | |
parent | 7f264e02f4480c49d1440be882416a10951c2165 (diff) | |
download | django-cfcf4b3605f9653e4e056088d89932b2a0e4281b.tar.gz |
Stopped using django.utils.unittest in the test suite.
Refs #20680.
Diffstat (limited to 'tests/test_utils')
-rw-r--r-- | tests/test_utils/tests.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/test_utils/tests.py b/tests/test_utils/tests.py index ec98a845a0..775a4a7c11 100644 --- a/tests/test_utils/tests.py +++ b/tests/test_utils/tests.py @@ -1,6 +1,9 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import, unicode_literals +import unittest +from unittest import skip + from django.db import connection from django.forms import EmailField, IntegerField from django.http import HttpResponse @@ -9,8 +12,6 @@ from django.test import SimpleTestCase, TestCase, skipUnlessDBFeature from django.test.html import HTMLParseError, parse_html from django.test.utils import CaptureQueriesContext, IgnoreDeprecationWarningsMixin from django.utils import six -from django.utils import unittest -from django.utils.unittest import skip from .models import Person |