Commit ad3b281c authored by Jannis Leidel's avatar Jannis Leidel
Browse files

[1.2.X] Fixed #14271 -- Use absolute path for admin media tests. Thanks, Alex Gaynor.

Backport from trunk (r13874).

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13875 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 7b556c2f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -13,8 +13,9 @@ from django.core.servers.basehttp import AdminMediaHandler
class AdminMediaHandlerTests(TestCase):

    def setUp(self):
        self.admin_media_file_path = \
        self.admin_media_file_path = os.path.abspath(
            os.path.join(django.__path__[0], 'contrib', 'admin', 'media')
        )
        self.handler = AdminMediaHandler(WSGIHandler())

    def test_media_urls(self):