minor fixes to tests

This commit is contained in:
David Kennedy 2024-02-07 13:21:13 -05:00
parent 2a676260c6
commit d4c47cc365
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@ class TestViews(TestCase):
self.client = Client()
def test_health_check_endpoint(self):
response = self.client.get("/health/")
response = self.client.get("/health")
self.assertContains(response, "OK", status_code=200)
def test_home_page(self):