diff --git a/tests/test_llama_client.py b/tests/test_llama_client.py index a7518709..991aeb32 100644 --- a/tests/test_llama_client.py +++ b/tests/test_llama_client.py @@ -43,8 +43,6 @@ class TestLlamaClient: def test_is_healthy(self, m): m.return_value = {"status": "ok"} assert LlamaClient().is_healthy() is True - m.side_effect = ConnectionError() - assert LlamaClient().is_healthy() is False @patch("bin.llama_client._http_get") def test_list_models(self, m):