summaryrefslogtreecommitdiff
path: root/internal/lsp/instruction_table_test.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-09-06 10:56:27 +0300
committerPaul Buetow <paul@buetow.org>2025-09-06 10:56:27 +0300
commit320de746f7a2985b60c8564a0e65bdf231e840b7 (patch)
treee70bcf50813dba411afa2934e774383124bbc99e /internal/lsp/instruction_table_test.go
parent06247527d5170f329b454b42f59a3e4434ab1f4b (diff)
use gofumpt
Diffstat (limited to 'internal/lsp/instruction_table_test.go')
-rw-r--r--internal/lsp/instruction_table_test.go36
1 files changed, 18 insertions, 18 deletions
diff --git a/internal/lsp/instruction_table_test.go b/internal/lsp/instruction_table_test.go
index 06364db..ff750ca 100644
--- a/internal/lsp/instruction_table_test.go
+++ b/internal/lsp/instruction_table_test.go
@@ -3,22 +3,22 @@ package lsp
import "testing"
func TestFindFirstInstructionInLine_Table(t *testing.T) {
- cases := []struct{
- name string
- line string
- instr string
- }{
- {"strict_inline_marker", ">do> trailing", "do"},
- {"c_block", "x /* add docs */ y", "add docs"},
- {"html_comment", "<!-- fix --> code", "fix"},
- {"slash_slash", "code // please refactor", "please refactor"},
- {"hash", "# summarize", "summarize"},
- {"double_dash", "-- rewrite quickly", "rewrite quickly"},
- }
- for _, c := range cases {
- instr, _, ok := findFirstInstructionInLine(c.line)
- if !ok || instr != c.instr {
- t.Fatalf("%s: got %q ok=%v", c.name, instr, ok)
- }
- }
+ cases := []struct {
+ name string
+ line string
+ instr string
+ }{
+ {"strict_inline_marker", ">do> trailing", "do"},
+ {"c_block", "x /* add docs */ y", "add docs"},
+ {"html_comment", "<!-- fix --> code", "fix"},
+ {"slash_slash", "code // please refactor", "please refactor"},
+ {"hash", "# summarize", "summarize"},
+ {"double_dash", "-- rewrite quickly", "rewrite quickly"},
+ }
+ for _, c := range cases {
+ instr, _, ok := findFirstInstructionInLine(c.line)
+ if !ok || instr != c.instr {
+ t.Fatalf("%s: got %q ok=%v", c.name, instr, ok)
+ }
+ }
}