Commit 157dbe2f authored by Malcolm Tredinnick's avatar Malcolm Tredinnick
Browse files

Fixed #8552 -- Use the LOGIN_REDIRECT_URL setting in the auth tests, rather...

Fixed #8552 -- Use the LOGIN_REDIRECT_URL setting in the auth tests, rather than hard-coding the value.

This enables things to work properly when installed in other configurations.
Patch from aeby.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@8613 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 9de848ce
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -113,7 +113,7 @@ class ChangePasswordTest(TestCase):
            }
        )
        self.assertEquals(response.status_code, 302)
        self.assert_(response['Location'].endswith('/accounts/profile/'))
        self.assert_(response['Location'].endswith(settings.LOGIN_REDIRECT_URL))

    def fail_login(self, password='password'):
        response = self.client.post('/login/', {