summaryrefslogtreecommitdiff
path: root/tests/apps
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-02-14 19:47:07 -0500
committerTim Graham <timograham@gmail.com>2015-02-17 19:03:03 -0500
commit307c0f299a6c26f5231d3516df5b4edc54b36553 (patch)
tree3c80c8cb475846c0dff45188db1db111249df97f /tests/apps
parentfa66ea75326e669cd3d51fb926a4364b8ba08959 (diff)
downloaddjango-307c0f299a6c26f5231d3516df5b4edc54b36553.tar.gz
Refs #24324 -- Fixed Python 2 test failures when path to Django source contains non-ASCII characters.
Diffstat (limited to 'tests/apps')
-rw-r--r--tests/apps/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/apps/tests.py b/tests/apps/tests.py
index 80cc088f42..89e295ffde 100644
--- a/tests/apps/tests.py
+++ b/tests/apps/tests.py
@@ -35,7 +35,7 @@ SOME_INSTALLED_APPS_NAMES = [
'django.contrib.auth',
] + SOME_INSTALLED_APPS[2:]
-HERE = os.path.dirname(__file__)
+HERE = os.path.dirname(upath(__file__))
class AppsTests(TestCase):