diff options
| author | Paul Buetow <paul@buetow.org> | 2025-09-24 23:21:43 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-09-24 23:21:43 +0300 |
| commit | c3c71345db9086392cd9b7529c7f5287009c226e (patch) | |
| tree | d227894ab900d6050cbe1418984526088a692db5 /internal/lsp/llm_request_opts_test.go | |
| parent | 127844a4ee481590ef53b6777d34bf2114cb3ab1 (diff) | |
Add runtime config store and reload command
Diffstat (limited to 'internal/lsp/llm_request_opts_test.go')
| -rw-r--r-- | internal/lsp/llm_request_opts_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/lsp/llm_request_opts_test.go b/internal/lsp/llm_request_opts_test.go index f4d2ef3..c6699b0 100644 --- a/internal/lsp/llm_request_opts_test.go +++ b/internal/lsp/llm_request_opts_test.go @@ -18,7 +18,7 @@ func (f fakeClient) DefaultModel() string { return f.model } func TestLlmRequestOpts_Gpt5_ForcesTemp1(t *testing.T) { s := newTestServer() one := 0.2 - s.codingTemperature = &one + s.cfg.CodingTemperature = &one s.llmClient = fakeClient{name: "openai", model: "gpt-5.0"} opts := s.llmRequestOpts() var got llm.Options |
