diff options
| author | Paul Buetow <paul@buetow.org> | 2025-09-08 12:02:40 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-09-08 12:02:40 +0300 |
| commit | 75cf6abd55bfb60324fc47cf91eac08dbb8b87b4 (patch) | |
| tree | 6ef90d8014fe4d9a757d3f7e95bf736b70e4c685 /internal/llm | |
| parent | 0dcf347c3fbc6e4ffb7e46294f5dd92dbbcd98ef (diff) | |
docs: move tmux documentation to its own file
Diffstat (limited to 'internal/llm')
| -rw-r--r-- | internal/llm/provider_more2_test.go | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/internal/llm/provider_more2_test.go b/internal/llm/provider_more2_test.go index fd9b2c2..465be82 100644 --- a/internal/llm/provider_more2_test.go +++ b/internal/llm/provider_more2_test.go @@ -3,11 +3,10 @@ package llm import "testing" func TestNewFromConfig_Copilot(t *testing.T) { - t.Setenv("COPILOT_API_KEY", "x") - cfg := Config{Provider: "copilot", CopilotModel: "small"} - c, err := NewFromConfig(cfg, "", "x") - if err != nil || c == nil { - t.Fatalf("copilot provider failed: %v %v", c, err) - } + t.Setenv("COPILOT_API_KEY", "x") + cfg := Config{Provider: "copilot", CopilotModel: "small"} + c, err := NewFromConfig(cfg, "", "x") + if err != nil || c == nil { + t.Fatalf("copilot provider failed: %v %v", c, err) + } } - |
