summaryrefslogtreecommitdiff
path: root/tests/regressiontests/utils/functional.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/regressiontests/utils/functional.py')
-rw-r--r--tests/regressiontests/utils/functional.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/regressiontests/utils/functional.py b/tests/regressiontests/utils/functional.py
index 72610154d8..206a5838b5 100644
--- a/tests/regressiontests/utils/functional.py
+++ b/tests/regressiontests/utils/functional.py
@@ -1,9 +1,9 @@
-from unittest import TestCase
+import unittest
from django.utils.functional import lazy
-class FunctionalTestCase(TestCase):
+class FunctionalTestCase(unittest.TestCase):
def test_lazy(self):
t = lazy(lambda: tuple(range(3)), list, tuple)
for a, b in zip(t(), range(3)):