Skip to content

Commit ae4f8d3

Browse files
remove unused variable
1 parent 258e72e commit ae4f8d3

1 file changed

Lines changed: 5 additions & 9 deletions

File tree

tests/integrations/langchain/test_langchain.py

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,12 @@ def _llm_type(self) -> str:
8282

8383

8484
@pytest.mark.parametrize(
85-
"send_default_pii, include_prompts, use_unknown_llm_type",
85+
"send_default_pii, include_prompts",
8686
[
87-
(True, True, False),
88-
(True, False, False),
89-
(False, True, False),
90-
(False, False, True),
87+
(True, True),
88+
(True, False),
89+
(False, True),
90+
(False, False),
9191
],
9292
)
9393
@pytest.mark.parametrize(
@@ -107,15 +107,11 @@ def test_langchain_agent(
107107
capture_events,
108108
send_default_pii,
109109
include_prompts,
110-
use_unknown_llm_type,
111110
system_instructions_content,
112111
request,
113112
get_model_response,
114113
server_side_event_chunks,
115114
):
116-
global llm_type
117-
llm_type = "acme-llm" if use_unknown_llm_type else "openai-chat"
118-
119115
sentry_init(
120116
integrations=[
121117
LangchainIntegration(

0 commit comments

Comments
 (0)