From cfee09b3ab60367ce031fd43aee5586229f62bee Mon Sep 17 00:00:00 2001 From: Eva Ho Date: Mon, 20 Apr 2026 17:21:52 -0400 Subject: [PATCH] fix test --- cmd/launch/integrations_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/launch/integrations_test.go b/cmd/launch/integrations_test.go index 21b45d53b..adbfde2a1 100644 --- a/cmd/launch/integrations_test.go +++ b/cmd/launch/integrations_test.go @@ -355,7 +355,7 @@ func TestBuildModelList_OnlyLocalModels_CloudRecsStillFirst(t *testing.T) { // Cloud recs always come first among recommended, regardless of installed inventory. // Cloud disablement is handled upstream in loadSelectableModels via filterCloudItems. - want := []string{"kimi-k2.5:cloud", "qwen3.5:cloud", "glm-5.1:cloud", "minimax-m2.7:cloud", "gemma4", "qwen3.5", "llama3.2", "qwen2.5"} + want := []string{"kimi-k2.5:cloud", "glm-5.1:cloud", "qwen3.5:cloud", "minimax-m2.7:cloud", "gemma4", "qwen3.5", "llama3.2", "qwen2.5"} if diff := cmp.Diff(want, got); diff != "" { t.Errorf("cloud recs pinned first even when no cloud models installed (-want +got):\n%s", diff) }