diff options
-rw-r--r-- | app_test.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app_test.py b/app_test.py index bd91a51e..35b36af4 100644 --- a/app_test.py +++ b/app_test.py @@ -34,9 +34,9 @@ class BaseEndpoints(SiteTest): response = self.client.get('/', 'http://pytest.local') self.assertEqual(response.status_code, 200) - def test_help(self): - """ Check the help path responds with 200 OK """ - response = self.client.get('/help') + def test_info_help(self): + """ Check the info help path responds with 200 OK """ + response = self.client.get('/info/help') self.assertEqual(response.status_code, 200) def test_not_found(self): |