From d2fdcba29db2a88056cfa87d9abfbdde840bd8c2 Mon Sep 17 00:00:00 2001 From: Harrison Chase Date: Tue, 25 Oct 2022 20:22:16 -0700 Subject: [PATCH] fix test name (#22) --- tests/integration_tests/llms/test_openai.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)