summaryrefslogtreecommitdiff
path: root/tests/regressiontests/utils/datastructures.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/regressiontests/utils/datastructures.py')
-rw-r--r--tests/regressiontests/utils/datastructures.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/regressiontests/utils/datastructures.py b/tests/regressiontests/utils/datastructures.py
index a353a32404..e684694d7c 100644
--- a/tests/regressiontests/utils/datastructures.py
+++ b/tests/regressiontests/utils/datastructures.py
@@ -1,7 +1,8 @@
-from django.test import TestCase
+import unittest
+
from django.utils.datastructures import SortedDict
-class DatastructuresTests(TestCase):
+class DatastructuresTests(unittest.TestCase):
def setUp(self):
self.d1 = SortedDict()
self.d1[7] = 'seven'