Skip to content

Commit 06af93f

Browse files
committed
style(chat_service_test): apply gofumpt formatting
1 parent 8f156cf commit 06af93f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

internal/engine/chat_service_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ func TestChatService_ChatDelegatesToClient(t *testing.T) {
120120
Provider: "anthropic",
121121
Model: "claude-opus-4",
122122
})
123-
resp, err := svc.Chat(context.Background(),
123+
resp, err := svc.Chat(
124+
context.Background(),
124125
[]types.EyrieMessage{{Role: "user", Content: "hi"}},
125126
svc.BuildOptions("sys", "claude-opus-4", 1024, nil),
126127
)
@@ -139,6 +140,7 @@ type errClient struct{ err error }
139140
func (e *errClient) Chat(_ context.Context, _ []types.EyrieMessage, _ types.ChatOptions) (*types.EyrieResponse, error) {
140141
return nil, e.err
141142
}
143+
142144
func (e *errClient) StreamChatContinue(_ context.Context, _ []types.EyrieMessage, _ types.ChatOptions, _ types.ContinuationConfig) (*types.StreamResult, error) {
143145
return nil, e.err
144146
}

0 commit comments

Comments
 (0)