diff --git a/tests/unit/llms/test_llm_azure_openai.py b/tests/unit/llms/test_llm_azure_openai.py
index a50b08fb85eca26719da69db41b065d4ceef9e86..1b2db3cb976b25ae1d0be89a9c3cedceb51f7aac 100644
--- a/tests/unit/llms/test_llm_azure_openai.py
+++ b/tests/unit/llms/test_llm_azure_openai.py
@@ -14,7 +14,7 @@ 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-3.5-turbo"
+            azure_openai_llm.name == "gpt-4o"
         ), "Default name not set correctly"
 
     def test_azure_openai_llm_init_success(self, mocker):