diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-16 03:55:40 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-16 03:55:40 +0200 |
| commit | 35f1097f473e51be82f68e93ea2db48dd1c98519 (patch) | |
| tree | 1b0a316caa9bbbbfab20b6665b424f356f411ac2 /internal/hexaiaction/prompts_simplify_test.go | |
| parent | 93dfe3798e03e74766b229418cde364a5ef29ae9 (diff) | |
Fix mixed pointer/value receivers on appconfig.App
Change all value receivers on App to pointer receivers for consistency.
Update callers that pass App values to pass pointers where needed for
the actionConfig interface.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'internal/hexaiaction/prompts_simplify_test.go')
| -rw-r--r-- | internal/hexaiaction/prompts_simplify_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/hexaiaction/prompts_simplify_test.go b/internal/hexaiaction/prompts_simplify_test.go index 4daba38..4cd831d 100644 --- a/internal/hexaiaction/prompts_simplify_test.go +++ b/internal/hexaiaction/prompts_simplify_test.go @@ -17,7 +17,7 @@ func (simplifyClient) DefaultModel() string { return "m" } func TestRunSimplify_Smoke(t *testing.T) { cfg := appconfig.Load(nil) - out, err := runSimplify(context.Background(), cfg, simplifyClient{}, "code") + out, err := runSimplify(context.Background(), &cfg, simplifyClient{}, "code") if err != nil { t.Fatalf("runSimplify: %v", err) } |
