diff options
Diffstat (limited to 'internal/api/stories_test.go')
| -rw-r--r-- | internal/api/stories_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/api/stories_test.go b/internal/api/stories_test.go index 53d15eb..342840b 100644 --- a/internal/api/stories_test.go +++ b/internal/api/stories_test.go @@ -212,7 +212,8 @@ func TestHandleStoryApprove_SetsRepositoryURL(t *testing.T) { ID: "proj-repo", Name: "claudomator", RemoteURL: "/site/git.terst.org/repos/claudomator.git", - LocalPath: "/workspace/claudomator", + // LocalPath intentionally empty: branch creation is a non-fatal side effect, + // omitting it keeps the test fast and free of real git operations. } if err := store.CreateProject(proj); err != nil { t.Fatalf("CreateProject: %v", err) |
