Fixed tests/test_app.py

This commit is contained in:
2025-03-03 22:43:03 +03:00
parent 20853072f1
commit e6cf3e9298

View File

@@ -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):