summaryrefslogtreecommitdiff
path: root/tests/project_template
diff options
context:
space:
mode:
Diffstat (limited to 'tests/project_template')
-rw-r--r--tests/project_template/test_settings.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/project_template/test_settings.py b/tests/project_template/test_settings.py
index 5623df320b..50fa31d8f3 100644
--- a/tests/project_template/test_settings.py
+++ b/tests/project_template/test_settings.py
@@ -3,14 +3,13 @@ import shutil
from django import conf
from django.test import TestCase
-from django.utils._os import upath
class TestStartProjectSettings(TestCase):
def setUp(self):
# Ensure settings.py exists
project_dir = os.path.join(
- os.path.dirname(upath(conf.__file__)),
+ os.path.dirname(conf.__file__),
'project_template',
'project_name',
)