fix model/provider mismatch

This commit is contained in:
SegFault42 2026-02-18 02:04:17 +03:00
parent 9b03c8e5cc
commit 9799d6f05f

View file

@ -293,8 +293,8 @@ func TestConvertConfig(t *testing.T) {
if len(warnings) != 0 { if len(warnings) != 0 {
t.Errorf("expected no warnings, got %v", warnings) t.Errorf("expected no warnings, got %v", warnings)
} }
if cfg.Agents.Defaults.Model != "glm-4.7" { if cfg.Agents.Defaults.Model != "deepseek/deepseek-chat" {
t.Errorf("default model should be glm-4.7, got %q", cfg.Agents.Defaults.Model) t.Errorf("default model should be deepseek/deepseek-chat, got %q", cfg.Agents.Defaults.Model)
} }
}) })
} }