From e6cf3e92984c2318c5ee5713411893f165bb7749 Mon Sep 17 00:00:00 2001 From: bacon Date: Mon, 3 Mar 2025 22:43:03 +0300 Subject: [PATCH] Fixed tests/test_app.py --- tests/test_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):