Skip to content

Commit 54fad07

Browse files
azulusclaude
andcommitted
fix(seer): Update all explorer chat tests for new kwargs
Add enable_mcp_tools=False to remaining assert_called_with calls and request=ANY to continue_run assertion. Co-Authored-By: Claude <noreply@anthropic.com>
1 parent aebcd65 commit 54fad07

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/sentry/seer/endpoints/test_organization_seer_explorer_chat.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ def test_post_new_conversation_enable_coding(self, mock_client_class: MagicMock)
105105
ANY,
106106
is_interactive=True,
107107
enable_coding=feature_enabled and option_enabled,
108+
enable_mcp_tools=False,
108109
)
109110

110111
@patch("sentry.seer.endpoints.organization_seer_explorer_chat.SeerExplorerClient")
@@ -130,6 +131,7 @@ def test_post_continue_conversation_calls_client(self, mock_client_class: MagicM
130131
insert_index=2,
131132
on_page_context=None,
132133
page_name=None,
134+
request=ANY,
133135
)
134136

135137
@patch("sentry.seer.endpoints.organization_seer_explorer_chat.SeerExplorerClient")
@@ -153,6 +155,7 @@ def test_post_continue_conversation_enable_coding(self, mock_client_class: Magic
153155
ANY,
154156
is_interactive=True,
155157
enable_coding=feature_enabled and option_enabled,
158+
enable_mcp_tools=False,
156159
)
157160

158161
@patch("sentry.seer.endpoints.organization_seer_explorer_chat.SeerExplorerClient")

0 commit comments

Comments
 (0)