summaryrefslogtreecommitdiff
path: root/django/test/testcases.py
diff options
context:
space:
mode:
authorAndré Ericson <de.ericson@gmail.com>2019-10-18 21:00:34 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-10-21 09:57:39 +0200
commit312049091288dbba2299de8d07ea3e3311ed7238 (patch)
treef279e94af6d3fe6bddb33afcb0ce8928b9cf1fd6 /django/test/testcases.py
parent31174031f1ded30d96c77908b965755e0be94c94 (diff)
Fixed #30876 -- Moved classproperty() decorator to the django.utils.functional.
Diffstat (limited to 'django/test/testcases.py')
-rw-r--r--django/test/testcases.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/test/testcases.py b/django/test/testcases.py
index ca5712ee8d..23459f22cd 100644
--- a/django/test/testcases.py
+++ b/django/test/testcases.py
@@ -37,7 +37,7 @@ from django.test.utils import (
CaptureQueriesContext, ContextList, compare_xml, modify_settings,
override_settings,
)
-from django.utils.decorators import classproperty
+from django.utils.functional import classproperty
from django.views.static import serve
__all__ = ('TestCase', 'TransactionTestCase',