From de5029e6d4a7efffcccfb08d98770b1c1c4f54fe Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 10 Mar 2026 19:34:02 +0200 Subject: task bf088a70: extract LSP client and completion state --- internal/lsp/document_test.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'internal/lsp/document_test.go') diff --git a/internal/lsp/document_test.go b/internal/lsp/document_test.go index 1a3f909..3dc970d 100644 --- a/internal/lsp/document_test.go +++ b/internal/lsp/document_test.go @@ -8,7 +8,6 @@ import ( "testing" "codeberg.org/snonux/hexai/internal/appconfig" - "codeberg.org/snonux/hexai/internal/llm" ) func newTestServer() *Server { @@ -40,9 +39,9 @@ func newTestServer() *Server { docs: make(map[string]*document), cfg: cfg, codeActionSubsystem: codeActionSubsystem{ - altClients: make(map[string]llm.Client), - llmProvider: canonicalProvider(cfg.Provider), + llmClientRegistry: llmClientRegistry{llmProvider: canonicalProvider(cfg.Provider)}, }, + completionSubsystem: completionSubsystem{completionState: completionState{}}, } } -- cgit v1.2.3