summaryrefslogtreecommitdiff
path: root/internal/hexaicli/run_output_test.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-19 08:58:38 +0200
committerPaul Buetow <paul@buetow.org>2026-03-19 08:58:38 +0200
commit31394385e72dd3a317585838ed1696076043cc60 (patch)
tree79c0c43b514df611fdcd15c899c8d1048cd01ab0 /internal/hexaicli/run_output_test.go
parent934266d5bbefbc33c95e933b6ef02875539bb72f (diff)
Inject runner dependencies across CLI, action, and LSP
Diffstat (limited to 'internal/hexaicli/run_output_test.go')
-rw-r--r--internal/hexaicli/run_output_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/hexaicli/run_output_test.go b/internal/hexaicli/run_output_test.go
index b4614da..e61e4b6 100644
--- a/internal/hexaicli/run_output_test.go
+++ b/internal/hexaicli/run_output_test.go
@@ -400,7 +400,7 @@ func TestRunCLIJobs_MultiJob_WritesOutputs(t *testing.T) {
}
stdout.Reset()
stderr.Reset()
- if err := runCLIJobs(context.Background(), singleJobs, msgs, "hello", &stdout, &stderr); err != nil {
+ if err := runCLIJobs(context.Background(), singleJobs, msgs, "hello", &stdout, &stderr, newClientFromApp, nil); err != nil {
t.Fatalf("runCLIJobs single: %v", err)
}
if !strings.Contains(stdout.String(), "out-a") {