Skip to content

Commit 17b2ee0

Browse files
olaservoclaude
andcommitted
fix(test): Label.Name is a plain string in go-github v89
The rebase onto main picked up the go-github v89 bump, which changed Label.Name from *string to string. Adjust the PR read conformance fixture accordingly. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
1 parent a4fc8e8 commit 17b2ee0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎pkg/github/output_conformance_pull_request_read_test.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func TestPullRequestReadOutputValidatesAgainstDeclaredSchema(t *testing.T) {
5959
Ref: gogithub.Ptr("main"),
6060
SHA: gogithub.Ptr("ef567890"),
6161
},
62-
Labels: []*gogithub.Label{{Name: gogithub.Ptr("bug")}},
62+
Labels: []*gogithub.Label{{Name: "bug"}},
6363
Assignees: []*gogithub.User{{Login: gogithub.Ptr("octocat")}},
6464
RequestedReviewers: []*gogithub.User{{Login: gogithub.Ptr("reviewer")}},
6565
Additions: gogithub.Ptr(10),

0 commit comments

Comments
 (0)