Merge pull request #21 from HoneyBBQ/fix/llm-client-test-path-20260201

fix(memory): correct mock server path in LLM client test
This commit is contained in:
BBQ
2026-02-01 00:18:38 -08:00
committed by GitHub
+1 -1
View File
@@ -11,7 +11,7 @@ func TestLLMClientExtract(t *testing.T) {
t.Parallel()
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.URL.Path != "/v1/chat/completions" {
if r.URL.Path != "/chat/completions" {
w.WriteHeader(http.StatusNotFound)
return
}