Commit 01362745 authored by Preston Holmes's avatar Preston Holmes
Browse files

Fixed a small oversight in auth tests

Thanks to Vinicius Ruan Cainelli for the catch
closes #392
parent c9c9a564
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -38,8 +38,8 @@ class BasicTestCase(TestCase):
        self.assertFalse(u.is_superuser)

        # Check API-based user creation with no password
        User.objects.create_user('testuser2', 'test2@example.com')
        self.assertFalse(u.has_usable_password())
        u2 = User.objects.create_user('testuser2', 'test2@example.com')
        self.assertFalse(u2.has_usable_password())

    def test_user_no_email(self):
        "Check that users can be created without an email"