From 7e0c9e62a618991b4eab2b98233194a63f2da23c Mon Sep 17 00:00:00 2001 From: Gareth Coles Date: Tue, 27 Feb 2018 09:53:27 +0000 Subject: Fix unit test --- app_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'app_test.py') 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): -- cgit v1.2.3