summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlton Gibson <carlton.gibson@noumenal.es>2023-04-30 12:52:11 +0200
committerGitHub <noreply@github.com>2023-04-30 12:52:11 +0200
commit0679e97bfe99257b983a7d716992b39cc49b406d (patch)
tree6d6e8b8c5775fd2381dede7f133d85c756af46ac
parent88f679c23d2d4bc4a9e914c868e5daf826d499eb (diff)
downloaddjango-compressor-0679e97bfe99257b983a7d716992b39cc49b406d.tar.gz
Switched to importlib in tests. (#1186)
Closes #1185.
-rw-r--r--compressor/tests/test_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/compressor/tests/test_utils.py b/compressor/tests/test_utils.py
index 78b11de..9811be2 100644
--- a/compressor/tests/test_utils.py
+++ b/compressor/tests/test_utils.py
@@ -8,7 +8,7 @@ import compressor.utils.staticfiles
from compressor.exceptions import FilterError
from compressor.utils import get_class
-from imp import reload
+from importlib import reload
def get_apps_without_staticfiles(apps):