diff --git a/src/registrar/tests/test_url_auth.py b/src/registrar/tests/test_url_auth.py index d4d343e18..39ca00f4d 100644 --- a/src/registrar/tests/test_url_auth.py +++ b/src/registrar/tests/test_url_auth.py @@ -153,7 +153,7 @@ class TestURLAuth(TestCase): raise AssertionError( f"GET {url} returned HTTP {code}, but should redirect to login or deny access", ) - + def assertURLIsNotProtectedByAuth(self, url): """ Make a GET request to the given URL, and ensure that it returns 200. diff --git a/src/registrar/tests/test_views.py b/src/registrar/tests/test_views.py index 450993e5c..1942a3839 100644 --- a/src/registrar/tests/test_views.py +++ b/src/registrar/tests/test_views.py @@ -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):