Stopped using django.utils.unittest in the test suite.

Refs #20680.
This commit is contained in:
Aymeric Augustin 2013-07-01 14:22:27 +02:00
parent 7f264e02f4
commit cfcf4b3605
123 changed files with 212 additions and 161 deletions

View file

@ -3,8 +3,9 @@ Tests for django test runner
"""
from __future__ import absolute_import, unicode_literals
import sys
from optparse import make_option
import sys
import unittest
from django.core.exceptions import ImproperlyConfigured
from django.core.management import call_command
@ -12,7 +13,6 @@ from django import db
from django.test import runner, TestCase, TransactionTestCase, skipUnlessDBFeature
from django.test.testcases import connections_support_transactions
from django.test.utils import IgnoreDeprecationWarningsMixin
from django.utils import unittest
from django.utils.importlib import import_module
from admin_scripts.tests import AdminScriptTestCase