diff options
| author | Tim Graham <timograham@gmail.com> | 2015-02-14 19:47:07 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-02-17 19:05:31 -0500 |
| commit | 2aa06e439a29a1c24fa03744395cc57787e7198e (patch) | |
| tree | 81b1a3e9bd7ef374521fc46be17d15e1f50a37c5 /tests/apps | |
| parent | 09da1b465ea8ba9ecb99b1cd02a689bb831d0e1b (diff) | |
[1.8.x] Refs #24324 -- Fixed Python 2 test failures when path to Django source contains non-ASCII characters.
Backport of 307c0f299a6c26f5231d3516df5b4edc54b36553 from master
Diffstat (limited to 'tests/apps')
| -rw-r--r-- | tests/apps/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/apps/tests.py b/tests/apps/tests.py index 5e23ddb9d1..4d7cd562a3 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): |
