We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0631f88 commit 6f71424Copy full SHA for 6f71424
tests/integrations/langchain/test_langchain.py
@@ -111,7 +111,7 @@ def test_langchain_text_completion(
111
)
112
events = capture_events()
113
114
- model_repsonse = get_model_response(
+ model_response = get_model_response(
115
Completion(
116
id="completion-id",
117
object="text_completion",
@@ -143,7 +143,7 @@ def test_langchain_text_completion(
143
with patch.object(
144
model.client._client._client,
145
"send",
146
- return_value=model_repsonse,
+ return_value=model_response,
147
) as _:
148
with start_transaction():
149
input_text = "What is the capital of France?"
0 commit comments