Cleanup integration test dir (#3308)

This commit is contained in:
Davis Chase
2023-04-21 09:44:09 -07:00
committed by GitHub
parent 3bc703b0d6
commit 2fd24d31a4
11 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
"""Integration test for SerpAPI."""
from langchain.utilities import SerpAPIWrapper
def test_call() -> None:
"""Test that call gives the correct answer."""
chain = SerpAPIWrapper()
output = chain.run("What was Obama's first name?")
assert output == "Barack Hussein Obama II"