Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/integration/test_wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ async def test_assemble_config_for_custom_endpoint(self, temp_graph_dir):
graph_path=str(temp_graph_dir),
provider_type="custom",
custom_endpoint="https://custom-llm.example.com/v1",
custom_api_key="custom-key-456",
custom_api_key="custom-key-456", # notsecret
custom_model="custom-model-7b",
)

Expand Down Expand Up @@ -767,7 +767,7 @@ async def test_llm_connection_max_retries_reached(self, temp_graph_dir):
graph_path=str(temp_graph_dir),
provider_type="custom",
custom_endpoint="https://custom.ai/v1",
custom_api_key="custom-key",
custom_api_key="custom-key", # notsecret
custom_model="custom-model",
)

Expand Down
4 changes: 2 additions & 2 deletions tests/unit/wizard/test_wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ async def test_prompts_for_endpoint_key_and_model(self):

# Verify state was updated
assert state.custom_endpoint == "https://custom.ai/v1"
assert state.custom_api_key == "custom-key-456"
assert state.custom_api_key == "custom-key-456" # notsecret
assert state.custom_model == "custom-model-7b"

@pytest.mark.asyncio
Expand Down Expand Up @@ -1092,7 +1092,7 @@ async def test_abort_on_connection_failure(self, tmp_path):
graph_path=str(graph_dir),
provider_type="custom",
custom_endpoint="https://custom.ai/v1",
custom_api_key="custom-key",
custom_api_key="custom-key", # notsecret
custom_model="custom-model",
)

Expand Down