diff options
Diffstat (limited to 'internal/lsp/document_test.go')
| -rw-r--r-- | internal/lsp/document_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/lsp/document_test.go b/internal/lsp/document_test.go index 0d19f29..e6fba40 100644 --- a/internal/lsp/document_test.go +++ b/internal/lsp/document_test.go @@ -8,6 +8,7 @@ import ( "testing" "codeberg.org/snonux/hexai/internal/appconfig" + "codeberg.org/snonux/hexai/internal/llmutils" ) func newTestServer() *Server { @@ -42,7 +43,7 @@ func newTestServer() *Server { docs: make(map[string]*document), cfg: cfg, codeActionSubsystem: codeActionSubsystem{ - llmClientRegistry: llmClientRegistry{llmProvider: canonicalProvider(cfg.Provider)}, + llmClientRegistry: llmClientRegistry{llmProvider: llmutils.CanonicalProvider(cfg.Provider)}, }, completionSubsystem: completionSubsystem{completionState: completionState{}}, } |
