From bde303dab28caac33926e38d5de6591a0b4c9a48 Mon Sep 17 00:00:00 2001 From: "Babak K. Shandiz" Date: Tue, 10 Jun 2025 13:57:31 +0100 Subject: [PATCH] test: fix test data const Signed-off-by: Babak K. Shandiz --- pkg/cmd/pr/shared/finder_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/cmd/pr/shared/finder_test.go b/pkg/cmd/pr/shared/finder_test.go index 28c2337d3..0fd96e09b 100644 --- a/pkg/cmd/pr/shared/finder_test.go +++ b/pkg/cmd/pr/shared/finder_test.go @@ -728,7 +728,7 @@ func TestFindAssignableActors(t *testing.T) { pr, _, err := f.Find(FindOptions{ Detector: &fd.DisabledDetectorMock{}, Fields: []string{"assignees"}, - Selector: "https://github.com/cli/cli/pull/123", + Selector: "https://github.com/cli/cli/pull/13", }) require.NoError(t, err) @@ -772,7 +772,7 @@ func TestFindAssignableActors(t *testing.T) { pr, _, err := f.Find(FindOptions{ Detector: &fd.EnabledDetectorMock{}, Fields: []string{"assignees"}, - Selector: "https://github.com/cli/cli/pull/123", + Selector: "https://github.com/cli/cli/pull/13", }) require.NoError(t, err)