From a8f7c863579a3cb364079bd2b28fc07221486c4c Mon Sep 17 00:00:00 2001 From: Desmond Foo <102380796+SHINE-six@users.noreply.github.com> Date: Sun, 15 Mar 2026 18:43:42 +0800 Subject: [PATCH] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- pkg/tools/spawn_status_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/tools/spawn_status_test.go b/pkg/tools/spawn_status_test.go index d4bba4346..cb8af126c 100644 --- a/pkg/tools/spawn_status_test.go +++ b/pkg/tools/spawn_status_test.go @@ -78,7 +78,8 @@ func TestSpawnStatusTool_Empty(t *testing.T) { func TestSpawnStatusTool_ListAll(t *testing.T) { provider := &MockLLMProvider{} - manager := NewSubagentManager(provider, "test-model", "/tmp/test") + workspace := t.TempDir() + manager := NewSubagentManager(provider, "test-model", workspace) now := time.Now().UnixMilli() manager.mu.Lock()