diff options
| author | Paul Buetow <paul@buetow.org> | 2025-09-19 22:52:48 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-09-19 22:52:48 +0300 |
| commit | eb72b06fe8e62cb77af73f6dc558d384a5a5fe80 (patch) | |
| tree | efeb1165b9fbcb69a4ee675dba7bdc8c28fee3aa /internal/lsp/helpers_inline_prompt_test.go | |
| parent | acc400768153a7bfda1413f15579c9455b877c87 (diff) | |
fix
Diffstat (limited to 'internal/lsp/helpers_inline_prompt_test.go')
| -rw-r--r-- | internal/lsp/helpers_inline_prompt_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/lsp/helpers_inline_prompt_test.go b/internal/lsp/helpers_inline_prompt_test.go index 4aaf892..e4a38f5 100644 --- a/internal/lsp/helpers_inline_prompt_test.go +++ b/internal/lsp/helpers_inline_prompt_test.go @@ -7,11 +7,11 @@ import ( func TestLineHasInlinePrompt_BasicAndDoubleOpen(t *testing.T) { // Basic inline - if !lineHasInlinePrompt("do >task> now") { + if !lineHasInlinePrompt("do >task> now", '>', '>') { t.Fatalf("expected inline prompt detection for >text>") } // Double-open variant should be recognized as inline prompt too - if !lineHasInlinePrompt(">>replace>") { + if !lineHasInlinePrompt(">>replace>", '>', '>') { t.Fatalf("expected inline prompt detection for >>text>") } } |
