diff --git a/tests/integration_tests/llms/test_openai.py b/tests/integration_tests/llms/test_openai.py index 850e91f4af7..8667c6f0bb3 100644 --- a/tests/integration_tests/llms/test_openai.py +++ b/tests/integration_tests/llms/test_openai.py @@ -3,8 +3,8 @@ from langchain.llms.openai import OpenAI -def test_cohere_call() -> None: - """Test valid call to cohere.""" +def test_openai_call() -> None: + """Test valid call to openai.""" llm = OpenAI(max_tokens=10) output = llm("Say foo:") assert isinstance(output, str)