summaryrefslogtreecommitdiff
path: root/tests/admin_views
diff options
context:
space:
mode:
Diffstat (limited to 'tests/admin_views')
-rw-r--r--tests/admin_views/tests.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/admin_views/tests.py b/tests/admin_views/tests.py
index ae3ebdd54d..cd423f6a01 100644
--- a/tests/admin_views/tests.py
+++ b/tests/admin_views/tests.py
@@ -31,7 +31,6 @@ from django.test import (
from django.test.utils import override_script_prefix, patch_logger
from django.urls import NoReverseMatch, resolve, reverse
from django.utils import formats, translation
-from django.utils._os import upath
from django.utils.cache import get_max_age
from django.utils.deprecation import RemovedInDjango21Warning
from django.utils.encoding import force_bytes, force_text, iri_to_uri
@@ -919,8 +918,8 @@ class AdminViewBasicTest(AdminViewBasicTestCase):
# Put this app's and the shared tests templates dirs in DIRS to take precedence
# over the admin's templates dir.
'DIRS': [
- os.path.join(os.path.dirname(upath(__file__)), 'templates'),
- os.path.join(os.path.dirname(os.path.dirname(upath(__file__))), 'templates'),
+ os.path.join(os.path.dirname(__file__), 'templates'),
+ os.path.join(os.path.dirname(os.path.dirname(__file__)), 'templates'),
],
'APP_DIRS': True,
'OPTIONS': {