Fix text in home page test

This commit is contained in:
Neil Martinsen-Burrell 2023-01-30 15:39:07 -06:00
parent 88a4c36fa6
commit 6e7b578fc5
No known key found for this signature in database
GPG key ID: 6A3C818CC10D0184

View file

@ -25,7 +25,7 @@ class TestViews(TestCase):
"""Home page should be available without a login."""
response = self.client.get("/")
self.assertContains(response, "registrar", status_code=200)
self.assertContains(response, "log in")
self.assertContains(response, "Sign in")
def test_whoami_page_no_user(self):
"""Whoami page not accessible without a logged-in user."""