fix test name (#22)

This commit is contained in:
Harrison Chase 2022-10-25 20:22:16 -07:00 committed by GitHub
parent 21b10ffb13
commit d2fdcba29d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)