summaryrefslogtreecommitdiff
path: root/internal/lsp/ignore_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lsp/ignore_test.go')
-rw-r--r--internal/lsp/ignore_test.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/lsp/ignore_test.go b/internal/lsp/ignore_test.go
index d7b6776..31ed828 100644
--- a/internal/lsp/ignore_test.go
+++ b/internal/lsp/ignore_test.go
@@ -28,9 +28,10 @@ func newIgnoreTestServer(gitRoot string, useGI bool, extra []string, notifyIgnor
docs: make(map[string]*document),
cfg: cfg,
codeActionSubsystem: codeActionSubsystem{llmClientRegistry: llmClientRegistry{}},
- completionSubsystem: completionSubsystem{completionState: completionState{}},
ignoreChecker: ignore.New(gitRoot, useGI, extra),
}
+ s.chat = newChatService(s)
+ s.completion = newCompletionService(s)
return s
}