From a47ff2a39b71d5a01af9286b7681010b76d6915d Mon Sep 17 00:00:00 2001 From: Robin Olsen <129996395+Telikz@users.noreply.github.com> Date: Wed, 4 Mar 2026 14:21:13 +0100 Subject: [PATCH] Update cmd/pm/tasks/createIssue.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- cmd/pm/tasks/createIssue.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/pm/tasks/createIssue.go b/cmd/pm/tasks/createIssue.go index 21cef28..c6757d4 100644 --- a/cmd/pm/tasks/createIssue.go +++ b/cmd/pm/tasks/createIssue.go @@ -73,7 +73,7 @@ func (t *CreateIssueTask) Validate(ctx context.Context) ValidationFeedback { issue := issues[0] - expect.Assert(len(issues) < 2, "Multiple issues were created instead of one delete the extra issues and try again") + expect.Assert(len(issues) < 2, "Multiple issues were created instead of one. Delete the extra issues and try again.") expect.NotEmptyString(issue.Title, "Issue title should not be empty") expect.Assert(issue.Title == "My first Issue",