Merge pull request #11091 from cli/babakks/fix-test-data

Fix const in PR finder tests
This commit is contained in:
William Martin 2025-06-10 15:09:10 +02:00 committed by GitHub
commit 49eee93a34
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)