summaryrefslogtreecommitdiff
path: root/internal/lsp/server_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lsp/server_test.go')
-rw-r--r--internal/lsp/server_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/lsp/server_test.go b/internal/lsp/server_test.go
index 836e43f..dc20eed 100644
--- a/internal/lsp/server_test.go
+++ b/internal/lsp/server_test.go
@@ -11,7 +11,7 @@ import (
func TestPromptSetUsesConfigStoreSnapshot(t *testing.T) {
s := newTestServer()
- initial := appconfig.App{MaxTokens: 77}
+ initial := appconfig.App{CoreConfig: appconfig.CoreConfig{MaxTokens: 77}}
store := runtimeconfig.New(initial)
s.configStore = store
@@ -75,7 +75,7 @@ func (stubLLMClient) DefaultModel() string { return "stub-model" }
func TestServerApplyOptions(t *testing.T) {
s := newTestServer()
client := stubLLMClient{}
- cfg := appconfig.App{MaxTokens: 88}
+ cfg := appconfig.App{CoreConfig: appconfig.CoreConfig{MaxTokens: 88}}
opts := ServerOptions{Config: &cfg, Client: client}
s.ApplyOptions(opts)
if s.currentLLMClient() != client {