Commit 0525f6d8 authored by Aviral Dasgupta's avatar Aviral Dasgupta
Browse files

Fixed some style issues in previous commit.

parent d12d55ec
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -584,11 +584,8 @@ class AdminViewBasicTest(TestCase):
        user.save()

        response = self.client.get('/test_admin/admin/')
        if reverse('admin:password_change') in response.content:
            self.fail('The "change password" link should not be displayed if a user does not have a usable password.')

        user.password = password
        user.save()
        self.assertFalse(reverse('admin:password_change') in response.content,
            msg='The "change password" link should not be displayed if a user does not have a usable password.')


class AdminViewFormUrlTest(TestCase):