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/settings_tests/tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/settings_tests') diff --git a/tests/settings_tests/tests.py b/tests/settings_tests/tests.py index 625c4f31df..bfd8d607a9 100644 --- a/tests/settings_tests/tests.py +++ b/tests/settings_tests/tests.py @@ -1,4 +1,5 @@ import os +import unittest import warnings from django.conf import settings, global_settings @@ -6,7 +7,7 @@ from django.core.exceptions import ImproperlyConfigured from django.http import HttpRequest from django.test import SimpleTestCase, TransactionTestCase, TestCase, signals from django.test.utils import override_settings -from django.utils import unittest, six +from django.utils import six @override_settings(TEST='override', TEST_OUTER='outer') -- cgit v1.3