diff options
author | 2018-02-27 09:53:27 +0000 | |
---|---|---|
committer | 2018-02-27 09:53:27 +0000 | |
commit | 7e0c9e62a618991b4eab2b98233194a63f2da23c (patch) | |
tree | 7cfbd7620c773a7ce89ea488c225428dfa166ba1 | |
parent | Move `/help` to `/info/help` (diff) |
Fix unit test
-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): |