testing changing cache

This commit is contained in:
2025-03-03 23:25:28 +03:00
parent 3e8e96943f
commit dd90845c65
3 changed files with 41 additions and 45 deletions

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'Works normally')
self.assertEqual(response.data, b'healthy')
@patch("proxy.rss_proxy.requests.get")
def test_proxy_success(self, mock_get):