mirror of
https://github.com/django/django.git
synced 2025-11-24 21:00:12 +00:00
Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.
These functions do nothing on Python 3.
This commit is contained in:
parent
ec4c1d6717
commit
4e729feaa6
64 changed files with 108 additions and 178 deletions
|
|
@ -3,13 +3,12 @@ import os
|
|||
from django.apps import apps
|
||||
from django.test import SimpleTestCase
|
||||
from django.test.utils import extend_sys_path
|
||||
from django.utils._os import upath
|
||||
|
||||
|
||||
class EggLoadingTest(SimpleTestCase):
|
||||
|
||||
def setUp(self):
|
||||
self.egg_dir = '%s/eggs' % os.path.dirname(upath(__file__))
|
||||
self.egg_dir = '%s/eggs' % os.path.dirname(__file__)
|
||||
|
||||
def tearDown(self):
|
||||
apps.clear_cache()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue