summaryrefslogtreecommitdiff
path: root/internal/llm/provider_test.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-11-03 22:47:20 +0200
committerPaul Buetow <paul@buetow.org>2025-11-03 22:47:20 +0200
commitd088267f55c45a7ffd90a056d56e02da61b525fc (patch)
tree20ef450ffb4cf3d74adf97ca39cf9f57153f8d13 /internal/llm/provider_test.go
parent35e1de6f975088ade5dbf0af533fe6fdac8fcc94 (diff)
Fix: Address lint warnings and bump patch version to 0.15.3v0.15.3
Diffstat (limited to 'internal/llm/provider_test.go')
-rw-r--r--internal/llm/provider_test.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/internal/llm/provider_test.go b/internal/llm/provider_test.go
index 2c0d69c..8c5d2cb 100644
--- a/internal/llm/provider_test.go
+++ b/internal/llm/provider_test.go
@@ -1,7 +1,6 @@
package llm
import (
- "context"
"testing"
)
@@ -20,10 +19,3 @@ func TestNewFromConfig_DefaultsAndErrors(t *testing.T) {
}
}
-type fakeClientMin struct{}
-
-func (fakeClientMin) Chat(context.Context, []Message, ...RequestOption) (string, error) {
- return "", nil
-}
-func (fakeClientMin) Name() string { return "x" }
-func (fakeClientMin) DefaultModel() string { return "m" }