test: update quick start provider expectations

This commit is contained in:
hamb1y
2026-07-06 12:13:00 +08:00
committed by Xubin Ren
parent 400369f0b0
commit 9eade9be5f
2 changed files with 13 additions and 9 deletions
+3 -4
View File
@@ -1590,10 +1590,9 @@ def _get_quick_start_provider_info() -> dict[str, _QuickStartProviderInfo]:
def _get_quick_start_provider_choices() -> dict[str, str]:
"""Return Quick Start provider display choices."""
choices = {
info.display_name: provider_name
for provider_name, info in _get_quick_start_provider_info().items()
}
choices: dict[str, str] = {}
for provider_name, info in _get_quick_start_provider_info().items():
choices.setdefault(info.display_name, provider_name)
choices[_QUICK_START_CUSTOM_PROVIDER_CHOICE] = "custom"
return choices