diff --git a/src/main/scala/gitbucket/core/service/MergeService.scala b/src/main/scala/gitbucket/core/service/MergeService.scala index b1a45c8..c737a67 100644 --- a/src/main/scala/gitbucket/core/service/MergeService.scala +++ b/src/main/scala/gitbucket/core/service/MergeService.scala @@ -58,7 +58,7 @@ } /** merge the pull request with a merge commit */ - private def mergePullRequest( + def mergePullRequest( git: Git, branch: String, issueId: Int, @@ -69,7 +69,7 @@ } /** rebase to the head of the pull request branch */ - private def rebasePullRequest( + def rebasePullRequest( git: Git, branch: String, issueId: Int, @@ -80,7 +80,7 @@ } /** squash commits in the pull request and append it */ - private def squashPullRequest( + def squashPullRequest( git: Git, branch: String, issueId: Int,