diff --git a/tests/test_app.py b/tests/test_app.py index 8c7f51d..5367773 100644 --- a/tests/test_app.py +++ b/tests/test_app.py @@ -15,7 +15,7 @@ class FlaskTestCase(unittest.TestCase): """Check health endpoint.""" response = self.app.get('/health') self.assertEqual(response.status_code, 200) - self.assertEqual(response.data, b'healthy') + self.assertEqual(response.data, b'Works normally') @patch("proxy.rss_proxy.requests.get") def test_proxy_success(self, mock_get):