summaryrefslogtreecommitdiff
path: root/internal/hexaiaction/run_seam_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/hexaiaction/run_seam_test.go')
-rw-r--r--internal/hexaiaction/run_seam_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/hexaiaction/run_seam_test.go b/internal/hexaiaction/run_seam_test.go
index 8fb8533..d37f179 100644
--- a/internal/hexaiaction/run_seam_test.go
+++ b/internal/hexaiaction/run_seam_test.go
@@ -65,7 +65,7 @@ func TestRun_WithInjectedConfigAndStatusSink(t *testing.T) {
t.Setenv("XDG_CONFIG_HOME", t.TempDir())
sink := &recordingActionStatusSink{}
runner := NewRunner()
- runner.loadConfig = func(context.Context, *log.Logger) appconfig.App { return appconfig.Load(nil) }
+ runner.loadConfig = func(context.Context, *log.Logger) appconfig.App { return appconfig.Load(context.Background(), nil) }
runner.newClient = func(_ appconfig.App) (actionClient, error) { return llmFake{}, nil }
runner.chooseAction = func(_ appconfig.App) (actionChoice, error) {
return actionChoice{kind: ActionSkip}, nil