We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06751dd commit 2027648Copy full SHA for 2027648
backend/controllers/projects_test.go
@@ -17,6 +17,12 @@ func TestAutomergeWhenBatchIsSuccessfulStatus(t *testing.T) {
17
defer teardownSuite(t)
18
isMergeCalled := false
19
mockedHTTPClient := mock.NewMockedHTTPClient(
20
+ mock.WithRequestMatch(
21
+ mock.GetReposIssuesByOwnerByRepoByIssueNumber,
22
+ github.Issue{
23
+ Number: github.Int(2),
24
+ PullRequestLinks: &github.PullRequestLinks{},
25
+ }),
26
mock.WithRequestMatch(
27
mock.GetReposPullsByOwnerByRepoByPullNumber,
28
github.PullRequest{
0 commit comments