summaryrefslogtreecommitdiff
path: root/tests/forms_tests/field_tests/test_imagefield.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/forms_tests/field_tests/test_imagefield.py')
-rw-r--r--tests/forms_tests/field_tests/test_imagefield.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/forms_tests/field_tests/test_imagefield.py b/tests/forms_tests/field_tests/test_imagefield.py
index 326735bf60..6fb4bed03c 100644
--- a/tests/forms_tests/field_tests/test_imagefield.py
+++ b/tests/forms_tests/field_tests/test_imagefield.py
@@ -4,7 +4,6 @@ import unittest
from django.core.files.uploadedfile import SimpleUploadedFile
from django.forms import ImageField
from django.test import SimpleTestCase
-from django.utils._os import upath
try:
from PIL import Image
@@ -13,7 +12,7 @@ except ImportError:
def get_img_path(path):
- return os.path.join(os.path.abspath(os.path.join(upath(__file__), '..', '..')), 'tests', path)
+ return os.path.join(os.path.abspath(os.path.join(__file__, '..', '..')), 'tests', path)
@unittest.skipUnless(Image, "Pillow is required to test ImageField")