Fixes names of site settings field in tests

This commit is contained in:
Mouse Reeve 2021-08-06 18:48:16 -07:00
parent a3d5a03477
commit e198e663d1

View file

@ -32,7 +32,7 @@ class AuthenticationViews(TestCase):
self.anonymous_user.is_authenticated = False self.anonymous_user.is_authenticated = False
self.settings = models.SiteSettings.objects.create( self.settings = models.SiteSettings.objects.create(
id=1, require_email_confirmation=False id=1, require_confirm_email=False
) )
def test_login_get(self, _): def test_login_get(self, _):