From 1772926d31fe207b2b1da703a715ab063c2d6fe4 Mon Sep 17 00:00:00 2001 From: James Briggs <james.briggs@hotmail.com> Date: Fri, 19 Jul 2024 15:39:23 +0800 Subject: [PATCH] chore: lint --- tests/unit/llms/test_llm_azure_openai.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/unit/llms/test_llm_azure_openai.py b/tests/unit/llms/test_llm_azure_openai.py index 1b2db3cb..79309195 100644 --- a/tests/unit/llms/test_llm_azure_openai.py +++ b/tests/unit/llms/test_llm_azure_openai.py @@ -13,9 +13,7 @@ def azure_openai_llm(mocker): class TestOpenAILLM: def test_azure_openai_llm_init_with_api_key(self, azure_openai_llm): assert azure_openai_llm.client is not None, "Client should be initialized" - assert ( - azure_openai_llm.name == "gpt-4o" - ), "Default name not set correctly" + assert azure_openai_llm.name == "gpt-4o", "Default name not set correctly" def test_azure_openai_llm_init_success(self, mocker): mocker.patch("os.getenv", return_value="fake-api-key") -- GitLab